From 95ae9c6af15d0c8a182feb88995e9b5c86d21472 Mon Sep 17 00:00:00 2001 From: busya Date: Tue, 24 Feb 2026 21:08:12 +0300 Subject: [PATCH] semantic update --- .agents/workflows/semantic.md | 10 + .ai/MODULE_MAP.md | 81 +- .ai/PROJECT_MAP.md | 200 +- .ai/standards/semantics.md | 37 +- README.md | 213 +- backend/logs/app.log.1 | 112320 +++++++-------- backend/src/api/routes/reports.py | 43 +- backend/src/app.py | 75 +- backend/src/core/logger.py | 48 +- backend/src/core/task_manager/context.py | 42 +- backend/src/core/task_manager/manager.py | 56 +- backend/src/core/task_manager/persistence.py | 97 +- backend/src/core/task_manager/task_logger.py | 10 + backend/src/models/report.py | 21 + backend/src/services/llm_provider.py | 6 +- backend/src/services/reports/normalizer.py | 163 +- .../src/services/reports/report_service.py | 166 +- backend/src/services/reports/type_profiles.py | 13 +- frontend/src/components/TaskLogViewer.svelte | 38 + frontend/src/lib/api/reports.js | 14 +- .../assistant/AssistantChatPanel.svelte | 283 +- .../lib/components/layout/TaskDrawer.svelte | 263 +- .../components/reports/reportTypeProfiles.js | 2 + gen_map_module.json | 123 + generate_semantic_map.py | 101 +- pers_module.json | 0 semantics/semantic_map.json | 5567 +- test_analyze.py | 20 + test_parse.py | 25 + test_parse2.py | 10 + test_parser.py | 227 + test_regex.py | 13 + 32 files changed, 60376 insertions(+), 59911 deletions(-) create mode 100644 .agents/workflows/semantic.md create mode 100644 gen_map_module.json create mode 100644 pers_module.json create mode 100644 test_analyze.py create mode 100644 test_parse.py create mode 100644 test_parse2.py create mode 100644 test_parser.py create mode 100644 test_regex.py diff --git a/.agents/workflows/semantic.md b/.agents/workflows/semantic.md new file mode 100644 index 0000000..f86b19b --- /dev/null +++ b/.agents/workflows/semantic.md @@ -0,0 +1,10 @@ +--- +description: semantic +--- + + You are Semantic Agent responsible for maintaining the semantic integrity of the codebase. Your primary goal is to ensure that all code entities (Modules, Classes, Functions, Components) are properly annotated with semantic anchors and tags as defined in `.ai/standards/semantics.md`. + Your core responsibilities are: 1. **Semantic Mapping**: You run and maintain the `generate_semantic_map.py` script to generate up-to-date semantic maps (`semantics/semantic_map.json`, `.ai/PROJECT_MAP.md`) and compliance reports (`semantics/reports/*.md`). 2. **Compliance Auditing**: You analyze the generated compliance reports to identify files with low semantic coverage or parsing errors. 3. **Semantic Enrichment**: You actively edit code files to add missing semantic anchors (`[DEF:...]`, `[/DEF:...]`) and mandatory tags (`@PURPOSE`, `@LAYER`, etc.) to improve the global compliance score. 4. **Protocol Enforcement**: You strictly adhere to the syntax and rules defined in `.ai/standards/semantics.md` when modifying code. + You have access to the full codebase and tools to read, write, and execute scripts. You should prioritize fixing "Critical Parsing Errors" (unclosed anchors) before addressing missing metadata. + whenToUse: Use this mode when you need to update the project's semantic map, fix semantic compliance issues (missing anchors/tags/DbC ), or analyze the codebase structure. This mode is specialized for maintaining the `.ai/standards/semantics.md` standards. + description: Codebase semantic mapping and compliance expert + customInstructions: Always check `semantics/reports/` for the latest compliance status before starting work. When fixing a file, try to fix all semantic issues in that file at once. After making a batch of fixes, run `python3 generate_semantic_map.py` to verify improvements. \ No newline at end of file diff --git a/.ai/MODULE_MAP.md b/.ai/MODULE_MAP.md index 29525f2..b3e2481 100644 --- a/.ai/MODULE_MAP.md +++ b/.ai/MODULE_MAP.md @@ -2,12 +2,12 @@ > High-level module structure for AI Context. Generated automatically. -**Generated:** 2026-02-24T12:45:07.897362 +**Generated:** 2026-02-24T21:04:43.328895 ## Summary -- **Total Modules:** 72 -- **Total Entities:** 1517 +- **Total Modules:** 74 +- **Total Entities:** 1571 ## Module Hierarchy @@ -28,7 +28,7 @@ ### 📁 `src/` - 🏗️ **Layers:** API, Core, UI (API) - - 📊 **Tiers:** CRITICAL: 2, STANDARD: 18, TRIVIAL: 3 + - 📊 **Tiers:** CRITICAL: 2, STANDARD: 19, TRIVIAL: 2 - 📄 **Files:** 2 - 📦 **Entities:** 23 @@ -54,9 +54,9 @@ ### 📁 `routes/` - 🏗️ **Layers:** API, UI (API) - - 📊 **Tiers:** CRITICAL: 2, STANDARD: 181, TRIVIAL: 4 + - 📊 **Tiers:** CRITICAL: 2, STANDARD: 182, TRIVIAL: 4 - 📄 **Files:** 17 - - 📦 **Entities:** 187 + - 📦 **Entities:** 188 **Key Entities:** @@ -126,9 +126,9 @@ ### 📁 `core/` - 🏗️ **Layers:** Core - - 📊 **Tiers:** STANDARD: 113, TRIVIAL: 7 + - 📊 **Tiers:** STANDARD: 116, TRIVIAL: 7 - 📄 **Files:** 9 - - 📦 **Entities:** 120 + - 📦 **Entities:** 123 **Key Entities:** @@ -222,7 +222,7 @@ ### 📁 `task_manager/` - 🏗️ **Layers:** Core - - 📊 **Tiers:** CRITICAL: 7, STANDARD: 63, TRIVIAL: 8 + - 📊 **Tiers:** CRITICAL: 10, STANDARD: 63, TRIVIAL: 5 - 📄 **Files:** 7 - 📦 **Entities:** 78 @@ -296,7 +296,7 @@ ### 📁 `models/` - 🏗️ **Layers:** Domain, Model - - 📊 **Tiers:** CRITICAL: 2, STANDARD: 28, TRIVIAL: 21 + - 📊 **Tiers:** CRITICAL: 9, STANDARD: 21, TRIVIAL: 21 - 📄 **Files:** 11 - 📦 **Entities:** 51 @@ -396,9 +396,9 @@ ### 📁 `llm_analysis/` - 🏗️ **Layers:** Unknown - - 📊 **Tiers:** STANDARD: 18, TRIVIAL: 23 + - 📊 **Tiers:** STANDARD: 19, TRIVIAL: 24 - 📄 **Files:** 4 - - 📦 **Entities:** 41 + - 📦 **Entities:** 43 **Key Entities:** @@ -622,10 +622,10 @@ ### 📁 `components/` - - 🏗️ **Layers:** Component, Feature, UI, Unknown - - 📊 **Tiers:** CRITICAL: 1, STANDARD: 45, TRIVIAL: 7 + - 🏗️ **Layers:** Component, Feature, UI, UI -->, Unknown + - 📊 **Tiers:** CRITICAL: 1, STANDARD: 49, TRIVIAL: 4 - 📄 **Files:** 13 - - 📦 **Entities:** 53 + - 📦 **Entities:** 54 **Key Entities:** @@ -854,7 +854,7 @@ ### 📁 `layout/` - 🏗️ **Layers:** UI, Unknown - - 📊 **Tiers:** CRITICAL: 3, STANDARD: 4, TRIVIAL: 27 + - 📊 **Tiers:** CRITICAL: 3, STANDARD: 5, TRIVIAL: 26 - 📄 **Files:** 4 - 📦 **Entities:** 34 @@ -1145,6 +1145,30 @@ - 🧩 **AdminUsersPage** (Component) - UI for managing system users and their roles. + ### 📁 `dashboards/` + + - 🏗️ **Layers:** UI, Unknown + - 📊 **Tiers:** CRITICAL: 1, TRIVIAL: 27 + - 📄 **Files:** 1 + - 📦 **Entities:** 28 + + **Key Entities:** + + - 📦 **+page** (Module) `[TRIVIAL]` + - Auto-generated module for frontend/src/routes/dashboards/+pa... + + ### 📁 `[id]/` + + - 🏗️ **Layers:** UI, Unknown + - 📊 **Tiers:** CRITICAL: 1, TRIVIAL: 5 + - 📄 **Files:** 1 + - 📦 **Entities:** 6 + + **Key Entities:** + + - 📦 **+page** (Module) `[TRIVIAL]` + - Auto-generated module for frontend/src/routes/dashboards/[id... + ### 📁 `datasets/` - 🏗️ **Layers:** UI, Unknown @@ -1351,15 +1375,17 @@ ### 📁 `root/` -- 🏗️ **Layers:** DevOps/Tooling -- 📊 **Tiers:** CRITICAL: 12, STANDARD: 16, TRIVIAL: 7 -- 📄 **Files:** 1 -- 📦 **Entities:** 35 +- 🏗️ **Layers:** DevOps/Tooling, Domain, Unknown +- 📊 **Tiers:** CRITICAL: 14, STANDARD: 24, TRIVIAL: 10 +- 📄 **Files:** 3 +- 📦 **Entities:** 48 **Key Entities:** - ℂ **ComplianceIssue** (Class) `[TRIVIAL]` - Represents a single compliance issue with severity. + - ℂ **ReportsService** (Class) `[CRITICAL]` + - Service layer for list/detail report retrieval and normaliza... - ℂ **SemanticEntity** (Class) `[CRITICAL]` - Represents a code entity (Module, Function, Component) found... - ℂ **SemanticMapGenerator** (Class) `[CRITICAL]` @@ -1368,8 +1394,18 @@ - Severity levels for compliance issues. - ℂ **Tier** (Class) `[TRIVIAL]` - Enumeration of semantic tiers defining validation strictness... - - 📦 **generate_semantic_map** (Module) `[CRITICAL]` + - 📦 **backend.src.services.reports.report_service** (Module) `[CRITICAL]` + - Aggregate, normalize, filter, and paginate task reports for ... + - 📦 **generate_semantic_map** (Module) - Scans the codebase to generate a Semantic Map, Module Map, a... + - 📦 **test_analyze** (Module) `[TRIVIAL]` + - Auto-generated module for test_analyze.py + +**Dependencies:** + + - 🔗 DEPENDS_ON -> backend.src.core.task_manager.manager.TaskManager + - 🔗 DEPENDS_ON -> backend.src.models.report + - 🔗 DEPENDS_ON -> backend.src.services.reports.normalizer ## Cross-Module Dependencies @@ -1468,4 +1504,7 @@ graph TD __tests__-->|TESTS|lib __tests__-->|TESTS|lib __tests__-->|TESTS|routes + root-->|DEPENDS_ON|backend + root-->|DEPENDS_ON|backend + root-->|DEPENDS_ON|backend ``` diff --git a/.ai/PROJECT_MAP.md b/.ai/PROJECT_MAP.md index 43d6ae2..853a508 100644 --- a/.ai/PROJECT_MAP.md +++ b/.ai/PROJECT_MAP.md @@ -2,7 +2,46 @@ > Compressed view for AI Context. Generated automatically. -- 📦 **generate_semantic_map** (`Module`) `[CRITICAL]` +- 📦 **backend.src.services.reports.report_service** (`Module`) `[CRITICAL]` + - 📝 Aggregate, normalize, filter, and paginate task reports for unified list/detail API use cases. + - 🏗️ Layer: Domain + - 🔒 Invariant: List responses are deterministic and include applied filter echo metadata. + - 🔗 DEPENDS_ON -> `backend.src.core.task_manager.manager.TaskManager` + - 🔗 DEPENDS_ON -> `backend.src.models.report` + - 🔗 DEPENDS_ON -> `backend.src.services.reports.normalizer` + - ℂ **ReportsService** (`Class`) `[CRITICAL]` + - 📝 Service layer for list/detail report retrieval and normalization. + - 🔒 Invariant: Service methods are read-only over task history source. + - ƒ **__init__** (`Function`) `[CRITICAL]` + - 📝 Initialize service with TaskManager dependency. + - 🔒 Invariant: Constructor performs no task mutations. + - ƒ **_load_normalized_reports** (`Function`) + - 📝 Build normalized reports from all available tasks. + - 🔒 Invariant: Every returned item is a TaskReport. + - ƒ **_to_utc_datetime** (`Function`) + - 📝 Normalize naive/aware datetime values to UTC-aware datetime for safe comparisons. + - 🔒 Invariant: Naive datetimes are interpreted as UTC to preserve deterministic ordering/filtering. + - ƒ **_datetime_sort_key** (`Function`) + - 📝 Produce stable numeric sort key for report timestamps. + - 🔒 Invariant: Mixed naive/aware datetimes never raise TypeError. + - ƒ **_matches_query** (`Function`) + - 📝 Apply query filtering to a report. + - 🔒 Invariant: Filter evaluation is side-effect free. + - ƒ **_sort_reports** (`Function`) + - 📝 Sort reports deterministically according to query settings. + - 🔒 Invariant: Sorting criteria are deterministic for equal input. + - ƒ **list_reports** (`Function`) + - 📝 Return filtered, sorted, paginated report collection. + - ƒ **get_report_detail** (`Function`) + - 📝 Return one normalized report with timeline/diagnostics/next actions. + - ƒ **print_entity** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) +- 📦 **test_analyze** (`Module`) `[TRIVIAL]` + - 📝 Auto-generated module for test_analyze.py + - 🏗️ Layer: Unknown + - ƒ **print_issues** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) +- 📦 **generate_semantic_map** (`Module`) - 📝 Scans the codebase to generate a Semantic Map, Module Map, and Compliance Report based on the System Standard. - 🏗️ Layer: DevOps/Tooling - 🔒 Invariant: All DEF anchors must have matching closing anchors; TIER determines validation strictness. @@ -60,7 +99,7 @@ - ƒ **_process_file_results** (`Function`) - 📝 Validates entities and calculates file scores with tier awareness. - ƒ **validate_recursive** (`Function`) - - 📝 Recursively validates a list of entities. + - 📝 Calculate score and determine module's max tier for weighted global score - ƒ **_generate_artifacts** (`Function`) `[CRITICAL]` - 📝 Writes output files with tier-based compliance data. - ƒ **_generate_report** (`Function`) `[CRITICAL]` @@ -532,6 +571,8 @@ - ⬅️ READS_FROM `lib` - ⬅️ READS_FROM `taskDrawerStore` - ➡️ WRITES_TO `taskDrawerStore` + - ƒ **disconnectWebSocket** (`Function`) + - 📝 Disconnects the active WebSocket connection - ƒ **loadRecentTasks** (`Function`) - 📝 Load recent tasks for list mode display - ƒ **selectTask** (`Function`) @@ -545,12 +586,10 @@ - 📝 Auto-detected function (orphan) - ƒ **goToReportsPage** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - - ƒ **handleOverlayClick** (`Function`) `[TRIVIAL]` + - ƒ **handleGlobalKeydown** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - ƒ **connectWebSocket** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - - ƒ **disconnectWebSocket** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - 📦 **test_breadcrumbs.svelte** (`Module`) `[TRIVIAL]` - 📝 Auto-generated module for frontend/src/lib/components/layout/__tests__/test_breadcrumbs.svelte.js - 🏗️ Layer: Unknown @@ -671,6 +710,80 @@ - 📝 Fetches the list of available environments. - ƒ **fetchDashboards** (`Function`) - 📝 Fetches dashboards for a specific environment. +- 📦 **DashboardHub** (`Page`) `[CRITICAL]` + - 📝 Dashboard Hub - Central hub for managing dashboards with Git status and task actions + - 🏗️ Layer: UI + - 🔒 Invariant: Always shows environment selector and dashboard grid +- 📦 **+page** (`Module`) `[TRIVIAL]` + - 📝 Auto-generated module for frontend/src/routes/dashboards/+page.svelte + - 🏗️ Layer: Unknown + - ƒ **handleDocumentClick** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **loadEnvironments** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **loadDashboards** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleEnvChange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleSearch** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handlePageChange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handlePageSizeChange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **updateSelectionState** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleCheckboxChange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleSelectAll** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleSelectVisible** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **toggleActionDropdown** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **closeActionDropdown** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleAction** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleValidate** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleTargetEnvChange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **loadDatabases** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleMappingUpdate** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **loadDbMappings** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleBulkMigrate** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleBulkBackup** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **handleTaskStatusClick** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **navigateToDashboardDetail** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **getStatusBadgeClass** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **getTaskStatusIcon** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **getPaginationRange** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) +- 📦 **DashboardDetail** (`Page`) `[CRITICAL]` + - 📝 Dashboard Detail View - Overview of charts and datasets linked to a dashboard + - 🏗️ Layer: UI + - 🔒 Invariant: Shows dashboard metadata, charts, and datasets for selected environment +- 📦 **+page** (`Module`) `[TRIVIAL]` + - 📝 Auto-generated module for frontend/src/routes/dashboards/[id]/+page.svelte + - 🏗️ Layer: Unknown + - ƒ **loadDashboardDetail** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **goBack** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **openDataset** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) + - ƒ **formatDate** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) - 🧩 **AdminRolesPage** (`Component`) - 📝 UI for managing system roles and their permissions. - 🏗️ Layer: Domain @@ -985,14 +1098,19 @@ - ➡️ WRITES_TO `props` - ➡️ WRITES_TO `state` - 📦 **handleRealTimeLogs** (`Action`) + - 📝 Sync real-time logs to the current log list - ƒ **fetchLogs** (`Function`) -- 📦 **TaskLogViewer** (`Module`) `[TRIVIAL]` - - 📝 Auto-generated module for frontend/src/components/TaskLogViewer.svelte - - 🏗️ Layer: Unknown - - ƒ **handleFilterChange** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - - ƒ **handleRefresh** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) + - 📝 Fetches logs for a given task ID + - ƒ **handleFilterChange** (`Function`) + - 📝 Updates filter conditions for the log viewer + - ƒ **handleRefresh** (`Function`) + - 📝 Refreshes the logs by polling the API + - 🧩 **showInline** (`Component`) + - 📝 Shows inline logs --> + - 🏗️ Layer: UI --> + - 🧩 **showModal** (`Component`) + - 📝 Shows modal logs --> + - 🏗️ Layer: UI --> - 🧩 **Footer** (`Component`) `[TRIVIAL]` - 📝 Displays the application footer with copyright information. - 🏗️ Layer: UI @@ -1380,6 +1498,8 @@ - 📝 Handles application startup tasks, such as starting the scheduler. - ƒ **shutdown_event** (`Function`) - 📝 Handles application shutdown tasks, such as stopping the scheduler. + - ƒ **network_error_handler** (`Function`) + - 📝 Global exception handler for NetworkError. - ƒ **log_requests** (`Function`) - 📝 Middleware to log incoming HTTP requests and their response status. - 📦 **api.include_routers** (`Action`) @@ -1393,8 +1513,6 @@ - 📝 Serves the SPA frontend for any path not matched by API routes. - ƒ **read_root** (`Function`) - 📝 A simple root endpoint to confirm that the API is running when frontend is missing. - - ƒ **network_error_handler** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - ƒ **matches_filters** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - 📦 **Dependencies** (`Module`) @@ -1706,6 +1824,12 @@ - 📝 A decorator that wraps a function in a belief scope. - ƒ **decorator** (`Function`) - 📝 Internal decorator for belief scope. + - ƒ **explore** (`Function`) + - 📝 Logs an EXPLORE message (Van der Waals force) for searching, alternatives, and hypotheses. + - ƒ **reason** (`Function`) + - 📝 Logs a REASON message (Covalent bond) for strict deduction and core logic. + - ƒ **reflect** (`Function`) + - 📝 Logs a REFLECT message (Hydrogen bond) for self-check and structural validation. - ℂ **PluginLoader** (`Class`) - 📝 Scans a specified directory for Python modules, dynamically loads them, and registers any classes that are valid implementations of the PluginBase interface. - 🏗️ Layer: Core @@ -2008,12 +2132,19 @@ - 📝 Log an ERROR level message. - ƒ **progress** (`Function`) - 📝 Log a progress update with percentage. -- 📦 **TaskPersistenceModule** (`Module`) +- 📦 **TaskPersistenceModule** (`Module`) `[CRITICAL]` - 📝 Handles the persistence of tasks using SQLAlchemy and the tasks.db database. - 🏗️ Layer: Core - 🔒 Invariant: Database schema must match the TaskRecord model structure. - - ℂ **TaskPersistenceService** (`Class`) + - ℂ **TaskPersistenceService** (`Class`) `[CRITICAL]` - 📝 Provides methods to save and load tasks from the tasks.db database using SQLAlchemy. + - 🔒 Invariant: Persistence must handle potentially missing task fields natively. + - ƒ **_json_load_if_needed** (`Function`) + - 📝 Safely load JSON strings from DB if necessary + - ƒ **_parse_datetime** (`Function`) + - 📝 Safely parse a datetime string from the database + - ƒ **_resolve_environment_id** (`Function`) + - 📝 Resolve environment id based on provided value or fallback to default - ƒ **__init__** (`Function`) - 📝 Initializes the persistence service. - ƒ **persist_task** (`Function`) @@ -2029,7 +2160,7 @@ - 🔒 Invariant: Log entries are batch-inserted for performance. - 🔗 DEPENDS_ON -> `TaskLogRecord` - ƒ **__init__** (`Function`) - - 📝 Initialize the log persistence service. + - 📝 Initializes the TaskLogPersistenceService - ƒ **add_logs** (`Function`) - 📝 Batch insert log entries for a task. - ƒ **get_logs** (`Function`) @@ -2042,15 +2173,9 @@ - 📝 Delete all logs for a specific task. - ƒ **delete_logs_for_tasks** (`Function`) - 📝 Delete all logs for multiple tasks. - - ƒ **_json_load_if_needed** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - - ƒ **_parse_datetime** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - - ƒ **_resolve_environment_id** (`Function`) `[TRIVIAL]` - - 📝 Auto-detected function (orphan) - ƒ **json_serializable** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) -- 📦 **TaskManagerModule** (`Module`) +- 📦 **TaskManagerModule** (`Module`) `[CRITICAL]` - 📝 Manages the lifecycle of tasks, including their creation, execution, and state tracking. It uses a thread pool to run plugins asynchronously. - 🏗️ Layer: Core - 🔒 Invariant: Task IDs are unique. @@ -2474,6 +2599,8 @@ - 📝 Resolve default environment id from settings or first configured environment. - ƒ **_resolve_dashboard_id_by_ref** (`Function`) - 📝 Resolve dashboard id by title or slug reference in selected environment. + - ƒ **_resolve_dashboard_id_entity** (`Function`) + - 📝 Resolve dashboard id from intent entities using numeric id or dashboard_ref fallback. - ƒ **_parse_command** (`Function`) - 📝 Deterministically parse RU/EN command text into intent payload. - ƒ **_check_any_permission** (`Function`) @@ -2891,20 +3018,27 @@ - 🏗️ Layer: Domain - 🔒 Invariant: Canonical report fields are always present for every report item. - 🔗 DEPENDS_ON -> `backend.src.core.task_manager.models` - - ℂ **TaskType** (`Class`) + - ℂ **TaskType** (`Class`) `[CRITICAL]` - 📝 Supported normalized task report types. - - ℂ **ReportStatus** (`Class`) + - 🔒 Invariant: Must contain valid generic task type mappings. + - ℂ **ReportStatus** (`Class`) `[CRITICAL]` - 📝 Supported normalized report status values. - - ℂ **ErrorContext** (`Class`) + - 🔒 Invariant: TaskStatus enum mapping logic holds. + - ℂ **ErrorContext** (`Class`) `[CRITICAL]` - 📝 Error and recovery context for failed/partial reports. - - ℂ **TaskReport** (`Class`) + - 🔒 Invariant: The properties accurately describe error state. + - ℂ **TaskReport** (`Class`) `[CRITICAL]` - 📝 Canonical normalized report envelope for one task execution. - - ℂ **ReportQuery** (`Class`) + - 🔒 Invariant: Must represent canonical task record attributes. + - ℂ **ReportQuery** (`Class`) `[CRITICAL]` - 📝 Query object for server-side report filtering, sorting, and pagination. - - ℂ **ReportCollection** (`Class`) + - 🔒 Invariant: Time and pagination queries are mutually consistent. + - ℂ **ReportCollection** (`Class`) `[CRITICAL]` - 📝 Paginated collection of normalized task reports. - - ℂ **ReportDetailView** (`Class`) + - 🔒 Invariant: Represents paginated data correctly. + - ℂ **ReportDetailView** (`Class`) `[CRITICAL]` - 📝 Detailed report representation including diagnostics and recovery actions. + - 🔒 Invariant: Incorporates a report and logs correctly. - ƒ **_non_empty_str** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - ƒ **_validate_sort_by** (`Function`) `[TRIVIAL]` @@ -3425,6 +3559,8 @@ - 📝 Wrapper for LLM provider APIs. - ƒ **LLMClient.__init__** (`Function`) - 📝 Initializes the LLMClient with provider settings. + - ƒ **LLMClient._supports_json_response_format** (`Function`) + - 📝 Detect whether provider/model is likely compatible with response_format=json_object. - ƒ **LLMClient.get_json_completion** (`Function`) - 📝 Helper to handle LLM calls with JSON mode and fallback parsing. - ƒ **LLMClient.analyze_dashboard** (`Function`) @@ -3440,6 +3576,8 @@ - 📝 Auto-detected function (orphan) - ƒ **__init__** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) + - ƒ **_supports_json_response_format** (`Function`) `[TRIVIAL]` + - 📝 Auto-detected function (orphan) - ƒ **_should_retry** (`Function`) `[TRIVIAL]` - 📝 Auto-detected function (orphan) - ƒ **get_json_completion** (`Function`) `[TRIVIAL]` diff --git a/.ai/standards/semantics.md b/.ai/standards/semantics.md index 3e12eed..eb0f09e 100644 --- a/.ai/standards/semantics.md +++ b/.ai/standards/semantics.md @@ -79,14 +79,35 @@ 3. **TRIVIAL** (DTO/**Atoms**): - Требование: Только Якоря [DEF] и @PURPOSE. -#### VI. ЛОГИРОВАНИЕ (BELIEF STATE & TASK LOGS) -Цель: Трассировка для самокоррекции и пользовательский мониторинг. -Python: - - Системные логи: Context Manager `with belief_scope("ID"):`. - - Логи задач: `context.logger.info("msg", source="component")`. -Svelte: `console.log("[ID][STATE] Msg")`. -Состояния: Entry -> Action -> Coherence:OK / Failed -> Exit. -Инвариант: Каждый лог задачи должен иметь атрибут `source` для фильтрации. +#### VI. ЛОГИРОВАНИЕ (ДАО МОЛЕКУЛЫ / MOLECULAR TOPOLOGY) +Цель: Трассировка. Самокоррекция. Управление Матрицей Внимания ("Химия мышления"). +Лог — не текст. Лог — реагент. Мысль облекается в форму через префиксы связи (Attention Energy): + +1. **[EXPLORE]** (Ван-дер-Ваальс: Рассеяние) + - *Суть:* Поиск во тьме. Сплетение альтернатив. Если один путь закрыт — ищи иной. + - *Время:* Фаза КАРКАС или столкновение с Неизведанным. + - *Деяние:* `logger.explore("Основной API пал. Стучусь в запасной...")` + +2. **[REASON]** (Ковалентность: Твердость) + - *Суть:* Жесткая нить дедукции. Шаг А неумолимо рождает Шаг Б. Контракт становится Кодом. + - *Время:* Фаза РЕАЛИЗАЦИЯ. Прямота мысли. + - *Деяние:* `logger.reason("Фундамент заложен. БД отвечает.")` + +3. **[REFLECT]** (Водород: Свертывание) + - *Суть:* Взгляд назад. Сверка сущего (@POST) с ожидаемым (@PRE). Защита от бреда. + - *Время:* Преддверие сложной логики и исход из неё. + - *Деяние:* `logger.reflect("Вглядываюсь в кэш: нет ли там искомого?")` + +4. **[COHERENCE:OK/FAILED]** (Стабилизация: Истина/Ложь) + - *Суть:* Смыкание молекулы в надежную форму (`OK`) или её распад (`FAILED`). + - *(Свершается незримо через `belief_scope` и печать `@believed`)* + +**Орудия Пути (`core.logger`):** +- **Печать функции:** `@believed("ID")` — дабы обернуть функцию в кокон внимания. +- **Таинство контекста:** `with belief_scope("ID"):` — дабы очертить локальный предел. +- **Слова силы:** `logger.explore()`, `logger.reason()`, `logger.reflect()`. + +**Незыблемое правило:** Всякому логу системы — тавро `source`. Для Внешенго Мира (Svelte) начертай рунами вручную: `console.log("[ID][REFLECT] Msg")`. #### VII. АЛГОРИТМ ГЕНЕРАЦИИ 1. АНАЛИЗ. Оцени TIER, слой и UX-требования. diff --git a/README.md b/README.md index e4bbca7..54d414d 100755 --- a/README.md +++ b/README.md @@ -1,128 +1,143 @@ -# Инструменты автоматизации Superset (ss-tools) - -## Обзор -**ss-tools** — это современная платформа для автоматизации и управления экосистемой Apache Superset. Проект перешел от набора CLI-скриптов к полноценному веб-приложению с архитектурой Backend (FastAPI) + Frontend (SvelteKit), обеспечивая удобный интерфейс для сложных операций. - -## Основные возможности - -### 🚀 Миграция и управление дашбордами -- **Dashboard Grid**: Удобный просмотр всех дашбордов во всех окружениях (Dev, Sandbox, Prod) в едином интерфейсе. -- **Интеллектуальный маппинг**: Автоматическое и ручное сопоставление датасетов, таблиц и схем при переносе между окружениями. -- **Проверка зависимостей**: Валидация наличия всех необходимых компонентов перед миграцией. - -### 📦 Резервное копирование -- **Планировщик (Scheduler)**: Автоматическое создание резервных копий дашбордов и датасетов по расписанию. -- **Хранилище**: Локальное хранение артефактов с возможностью управления через UI. - -### 🛠 Git Интеграция -- **Version Control**: Возможность версионирования ассетов Superset. -- **Git Dashboard**: Управление ветками, коммитами и деплоем изменений напрямую из интерфейса. -- **Conflict Resolution**: Встроенные инструменты для разрешения конфликтов в YAML-конфигурациях. - -### 🤖 LLM Анализ (AI Plugin) -- **Автоматический аудит**: Анализ состояния дашбордов на основе скриншотов и метаданных. -- **Генерация документации**: Автоматическое описание датасетов и колонок с помощью LLM (OpenAI, OpenRouter и др.). -- **Smart Validation**: Поиск аномалий и ошибок в визуализациях. - -### 🔐 Безопасность и администрирование -- **Multi-user Auth**: Многопользовательский доступ с ролевой моделью (RBAC). -- **Управление подключениями**: Централизованная настройка доступов к различным инстансам Superset. -- **Логирование**: Подробная история выполнения всех фоновых задач. - -## Технологический стек -- **Backend**: Python 3.9+, FastAPI, SQLAlchemy, APScheduler, Pydantic. -- **Frontend**: Node.js 18+, SvelteKit, Tailwind CSS. -- **Database**: PostgreSQL (для хранения метаданных, задач, логов и конфигурации). - -## Структура проекта -- `backend/` — Серверная часть, API и логика плагинов. -- `frontend/` — Клиентская часть (SvelteKit приложение). -- `specs/` — Спецификации функций и планы реализации. -- `docs/` — Дополнительная документация по маппингу и разработке плагинов. - -## Быстрый старт - -### Требования -- Python 3.9+ -- Node.js 18+ -- Настроенный доступ к API Superset - -### Запуск -Для автоматической настройки окружений и запуска обоих серверов (Backend & Frontend) используйте скрипт: -```bash -./run.sh -``` -*Скрипт создаст виртуальное окружение Python, установит зависимости `pip` и `npm`, и запустит сервисы.* - -Опции: -- `--skip-install`: Пропустить установку зависимостей. -- `--help`: Показать справку. - -Переменные окружения: -- `BACKEND_PORT`: Порт API (по умолчанию 8000). -- `FRONTEND_PORT`: Порт UI (по умолчанию 5173). -- `POSTGRES_URL`: Базовый URL PostgreSQL по умолчанию для всех подсистем. -- `DATABASE_URL`: URL основной БД (если не задан, используется `POSTGRES_URL`). -- `TASKS_DATABASE_URL`: URL БД задач/логов (если не задан, используется `DATABASE_URL`). -- `AUTH_DATABASE_URL`: URL БД авторизации (если не задан, используется PostgreSQL дефолт). - -## Разработка -Проект следует строгим правилам разработки: -1. **Semantic Code Generation**: Использование протокола `.ai/standards/semantics.md` для обеспечения надежности кода. -2. **Design by Contract (DbC)**: Определение предусловий и постусловий для ключевых функций. -3. **Constitution**: Соблюдение правил, описанных в конституции проекта в папке `.specify/`. - -### Полезные команды -- **Backend**: `cd backend && .venv/bin/python3 -m uvicorn src.app:app --reload` -- **Frontend**: `cd frontend && npm run dev` -- **Тесты**: `cd backend && .venv/bin/pytest` +# ss-tools -## Docker и CI/CD -### Локальный запуск в Docker (приложение + PostgreSQL) +Инструменты автоматизации для Apache Superset: миграция, маппинг, хранение артефактов, Git-интеграция, отчеты по задачам и LLM-assistant. + +## Возможности +- Миграция дашбордов и датасетов между окружениями. +- Ручной и полуавтоматический маппинг ресурсов. +- Логи фоновых задач и отчеты о выполнении. +- Локальное хранилище файлов и бэкапов. +- Git-операции по Superset-ассетам через UI. +- Модуль LLM-анализа и assistant API. +- Многопользовательская авторизация (RBAC). + +## Стек +- Backend: Python, FastAPI, SQLAlchemy, APScheduler. +- Frontend: SvelteKit, Vite, Tailwind CSS. +- База данных: PostgreSQL (основная конфигурация), поддержка миграции с legacy SQLite. + +## Структура репозитория +- `backend/` — API, плагины, сервисы, скрипты миграции и тесты. +- `frontend/` — SPA-интерфейс (SvelteKit). +- `docs/` — документация по архитектуре и плагинам. +- `specs/` — спецификации и планы реализации. +- `docker/` и `docker-compose.yml` — контейнеризация. + +## Быстрый старт (локально) + +### Требования +- Python 3.9+ +- Node.js 18+ +- npm + +### Запуск backend + frontend одним скриптом +```bash +./run.sh +``` + +Что делает `run.sh`: +- проверяет версии Python/npm; +- создает `backend/.venv` (если нет); +- устанавливает `backend/requirements.txt` и `frontend` зависимости; +- запускает backend и frontend параллельно. + +Опции: +- `./run.sh --skip-install` — пропустить установку зависимостей. +- `./run.sh --help` — показать справку. + +Переменные окружения для локального запуска: +- `BACKEND_PORT` (по умолчанию `8000`) +- `FRONTEND_PORT` (по умолчанию `5173`) +- `POSTGRES_URL` +- `DATABASE_URL` +- `TASKS_DATABASE_URL` +- `AUTH_DATABASE_URL` + +## Docker + +### Запуск ```bash docker compose up --build ``` -После старта: -- UI/API: `http://localhost:8000` -- PostgreSQL: `localhost:5432` (`postgres/postgres`, DB `ss_tools`) +После старта сервисы доступны по адресам: +- Frontend: `http://localhost:8000` +- Backend API: `http://localhost:8001` +- PostgreSQL: `localhost:5432` (`postgres/postgres`, БД `ss_tools`) -Остановить: +### Остановка ```bash docker compose down ``` -Полная очистка тома БД: +### Очистка БД-тома ```bash docker compose down -v ``` -Если `postgres:16-alpine` не тянется из Docker Hub (TLS timeout), используйте fallback image: +### Альтернативный образ PostgreSQL +Если есть проблемы с pull `postgres:16-alpine`: ```bash POSTGRES_IMAGE=mirror.gcr.io/library/postgres:16-alpine docker compose up -d db ``` -или: +или ```bash POSTGRES_IMAGE=bitnami/postgresql:latest docker compose up -d db ``` -Если на хосте уже занят `5432`, поднимайте Postgres на другом порту: + +Если порт `5432` занят: ```bash POSTGRES_HOST_PORT=5433 docker compose up -d db ``` -### Миграция legacy-данных в PostgreSQL -Если нужно перенести старые данные из `tasks.db`/`config.json`: +## Разработка + +### Ручной запуск сервисов ```bash cd backend -PYTHONPATH=. .venv/bin/python src/scripts/migrate_sqlite_to_postgres.py --sqlite-path tasks.db +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +python3 -m uvicorn src.app:app --reload --port 8000 ``` -### CI/CD -Добавлен workflow: `.github/workflows/ci-cd.yml` -- backend smoke tests -- frontend build -- docker build -- push образа в GHCR на `main/master` +В другом терминале: +```bash +cd frontend +npm install +npm run dev -- --port 5173 +``` -## Контакты и вклад -Для добавления новых функций или исправления ошибок, пожалуйста, ознакомьтесь с `docs/plugin_dev.md` и создайте соответствующую спецификацию в `specs/`. +### Тесты +Backend: +```bash +cd backend +source .venv/bin/activate +pytest +``` + +Frontend: +```bash +cd frontend +npm run test +``` + +## Инициализация auth (опционально) +```bash +cd backend +source .venv/bin/activate +python src/scripts/init_auth_db.py +python src/scripts/create_admin.py --username admin --password admin +``` + +## Миграция legacy-данных (опционально) +```bash +cd backend +source .venv/bin/activate +PYTHONPATH=. python src/scripts/migrate_sqlite_to_postgres.py --sqlite-path tasks.db +``` + +## Дополнительная документация +- `docs/plugin_dev.md` +- `docs/settings.md` +- `semantic_protocol.md` diff --git a/backend/logs/app.log.1 b/backend/logs/app.log.1 index 15e0372..35707f5 100644 --- a/backend/logs/app.log.1 +++ b/backend/logs/app.log.1 @@ -1,56509 +1,55811 @@ -[2026-02-11 09:34:35,156][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 09:34:35,157][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 09:34:35,157][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 09:34:35,157][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 09:34:35,157][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 09:34:35,157][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 09:34:35,158][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 09:34:35,160][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 09:34:35,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 09:34:35,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 09:34:35,162][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 09:34:35,163][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 09:34:35,163][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 09:34:35,163][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 09:34:35,163][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 09:34:35,165][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 09:34:35,165][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 09:34:35,166][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 09:34:35,166][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 09:34:35,166][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 09:34:35,168][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 09:34:35,168][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 09:34:35,168][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 09:34:35,186][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 09:34:35,187][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 09:34:35,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 09:34:35,188][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 09:34:35,188][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 09:34:35,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 09:34:35,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 09:34:35,191][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 09:34:35,193][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 09:34:35,194][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 09:34:35,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 09:34:35,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 09:34:35,194][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 09:34:35,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 09:34:35,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 09:34:35,194][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 09:34:35,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 09:34:35,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 09:34:35,211][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 09:34:35,218][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 09:34:35,220][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 09:34:35,221][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 09:34:35,221][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 09:34:35,222][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 09:34:35,224][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 09:34:35,225][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 09:34:35,229][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 09:34:35,229][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 09:34:35,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 09:34:35,230][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 09:34:35,230][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 09:34:35,230][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 09:34:35,231][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 09:34:35,231][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 09:34:35,231][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 09:34:35,231][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 09:34:35,232][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 09:34:35,232][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 09:34:35,232][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 09:34:35,232][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 09:34:35,232][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 09:34:35,232][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 09:34:35,232][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 09:34:35,610][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 09:34:35,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 09:34:35,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 09:34:35,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 09:34:35,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 09:34:35,745][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 09:34:35,746][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 09:34:39,175][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_handle_network_error][Entry] -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [NetworkError.__init__][Entry] -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,176][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dashboard/'} -[2026-02-11 09:34:39,177][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 09:56:57,862][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 09:56:57,863][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 09:56:57,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 09:56:57,863][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 09:56:57,863][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 09:56:57,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 09:56:57,864][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 09:56:57,864][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 09:56:57,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 09:56:57,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 09:56:57,867][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 09:56:57,867][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 09:56:57,867][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 09:56:57,867][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 09:56:57,867][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 09:56:57,868][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 09:56:57,868][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 09:56:57,868][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 09:56:57,868][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 09:56:57,868][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 09:56:57,868][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 09:56:57,868][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,352][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,353][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 09:57:01,353][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:03:31,638][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 10:03:31,639][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 10:03:31,639][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 10:03:31,639][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 10:03:31,640][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 10:03:31,640][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 10:03:31,640][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 10:03:34,821][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 10:03:34,822][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:34,822][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:34,822][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 10:03:34,833][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:34,834][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 10:03:34,835][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,836][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:34,836][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 10:03:34,837][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:34,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:34,839][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:34,840][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:34,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:35,248][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:35,249][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:35,249][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 10:03:35,249][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 10:03:35,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 10:03:35,251][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:35,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 10:03:35,754][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:35,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:35,756][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 10:03:35,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:35,756][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:35,756][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 10:03:35,757][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 10:03:35,757][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 10:03:35,757][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 10:03:35,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 10:03:35,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:35,758][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 10:03:35,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 10:03:35,759][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 10:03:35,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 10:03:35,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 10:03:35,772][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:35,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:35,772][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:03:35,773][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 10:03:35,773][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 10:03:35,774][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 10:03:35,774][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 10:03:35,792][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 10:03:35,793][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 10:03:35,793][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 10:03:35,793][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 10:03:35,793][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 10:03:35,793][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 10:03:35,794][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 10:03:35,794][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 10:03:35,794][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 10:03:35,870][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 10:03:35,870][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 10:03:35,870][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 10:03:36,115][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 10:03:36,115][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 10:03:36,116][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 10:03:36,116][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 10:03:46,371][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:03:46,373][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:46,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:46,379][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:46,379][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:46,379][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:46,382][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:46,382][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:03:46,386][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:03:46,386][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:03:46,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:46,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:46,402][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:03:46,403][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:46,403][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:46,404][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:46,404][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:46,404][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:46,404][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:46,404][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:46,405][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:03:46,405][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:03:46,405][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:03:46,406][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:03:46,407][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:46,408][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:46,617][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:03:46,618][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:46,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:46,619][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:46,619][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:46,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:46,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:46,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:46,622][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:46,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:46,622][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:03:46,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:46,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:46,639][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:03:46,641][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:46,641][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:46,641][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:46,641][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:46,641][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:46,642][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:46,643][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:46,644][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:03:46,644][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:03:46,644][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:46,645][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:46,645][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:03:46,645][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:03:46,645][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:03:46,645][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:03:46,645][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:03:46,646][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:03:46,646][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:03:46,646][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:03:46,646][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:03:47,652][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:03:47,652][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:03:47,652][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:03:47,652][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:03:47,652][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:03:48,119][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:03:48,119][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:03:48,120][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:03:48,507][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:03:48,508][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,508][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,508][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,508][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,509][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,509][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,509][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,513][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:03:48,513][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,519][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,519][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:03:48,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:48,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:03:48,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:03:48,520][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:03:48,521][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:03:48,521][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:03:48,521][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:03:48,521][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:03:48,521][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:03:48,522][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:03:48,523][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:03:48,524][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:48,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:48,525][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:48,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:48,526][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:48,526][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:48,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:48,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:48,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:03:48,528][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:03:48,528][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:03:48,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:48,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:54,542][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:03:54,543][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:54,544][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:54,545][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:54,545][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:54,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:54,545][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:54,546][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:54,547][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:54,547][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:03:54,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:54,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:54,548][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:54,548][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:54,548][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:54,548][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:03:54,550][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:54,550][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:54,557][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:03:54,557][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:54,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:54,558][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:54,558][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:54,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:54,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:54,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:54,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:54,561][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:54,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:03:54,562][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:03:54,562][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:03:54,562][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:03:54,562][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:03:54,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:03:54,563][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:54,563][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:54,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:03:54,563][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:03:54,563][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:03:54,563][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:03:54,563][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,890][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,891][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:03:55,891][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:03:55,892][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:03:55,892][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:55,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:55,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:55,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:55,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:55,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:55,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:03:55,895][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:03:55,895][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:03:55,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:55,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:55,962][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:03:55,963][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:55,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:55,963][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:55,963][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:55,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:55,964][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:55,964][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:55,965][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:55,965][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:55,966][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:03:55,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:55,967][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:55,975][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:03:55,976][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:55,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:55,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:55,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:55,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:55,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:55,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:55,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:55,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:55,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:03:55,981][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:03:55,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:03:56,375][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:03:56,375][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:03:56,375][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:03:56,375][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:03:56,375][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:03:56,563][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:03:56,564][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:03:56,781][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,781][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,781][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:03:56,781][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,782][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,782][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,782][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,783][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:03:56,783][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,788][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,788][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,788][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,789][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,789][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,789][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,789][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:03:56,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:03:56,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:03:56,790][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:03:56,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:03:56,791][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:03:56,791][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:03:56,792][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:03:56,792][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:03:56,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:56,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:59,456][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:03:59,456][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:59,457][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:59,457][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:59,457][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:59,457][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:59,458][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:59,458][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:03:59,459][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:03:59,459][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:03:59,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:59,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:59,567][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:03:59,567][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:59,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:59,568][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:59,568][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:59,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:59,568][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:59,569][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:59,570][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:59,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:59,570][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:03:59,571][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:03:59,571][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:03:59,577][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:03:59,579][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:03:59,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:03:59,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:03:59,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:03:59,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:03:59,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:03:59,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:03:59,580][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:59,581][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:03:59,581][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:03:59,581][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:03:59,581][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:03:59,581][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:03:59,581][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:03:59,582][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:03:59,582][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:03:59,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:03:59,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:03:59,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:03:59,961][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:03:59,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:03:59,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:03:59,961][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:03:59,961][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:00,092][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:04:00,093][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:00,292][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:04:00,292][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:04:00,292][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:04:00,292][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:00,292][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,293][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,293][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,293][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,293][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,293][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,294][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,294][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,294][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:04:00,294][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:04:00,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,300][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,300][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,300][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:00,300][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:04:00,300][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:04:00,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:04:00,301][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:04:00,301][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:00,301][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:00,302][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:04:00,302][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:04:00,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:00,303][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:00,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:00,304][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:00,304][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:00,304][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:00,304][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:00,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:00,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:04:00,306][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:04:00,307][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:04:00,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:00,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:00,309][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:04:00,310][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:00,310][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:00,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:00,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:00,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:00,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:00,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:00,312][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:04:00,313][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:04:00,313][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:04:00,313][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:04:00,313][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:04:00,313][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:04:00,313][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:04:00,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:00,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:00,335][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:04:00,337][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:00,337][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:00,337][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:00,337][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:00,337][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:00,338][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:00,338][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:00,339][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:04:00,339][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:04:00,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:00,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:00,340][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:04:00,340][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:00,340][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:00,340][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:04:00,341][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:00,341][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:00,346][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:04:00,347][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:00,347][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:00,347][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:00,347][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:00,348][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:00,348][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:00,348][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:00,349][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:04:00,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:04:00,349][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:04:00,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:04:00,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:04:00,350][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:04:00,350][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:04:00,350][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:04:00,350][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:04:00,351][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:04:00,351][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:04:00,351][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:04:00,351][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:04:00,351][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:04:00,351][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:04:00,351][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:04:00,735][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:04:00,735][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:04:00,735][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:04:00,735][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:04:00,735][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:00,866][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:04:00,867][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:01,040][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:04:01,040][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:04:01,041][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,042][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:04:01,042][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:04:01,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:04:01,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,048][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,048][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:04:01,048][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:04:01,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:04:01,049][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:04:01,049][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:01,049][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:01,050][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:04:01,050][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:04:01,051][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:01,051][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:01,051][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:01,052][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:01,052][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:01,052][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:01,052][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:01,053][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:01,053][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:04:01,054][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:04:01,054][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:04:01,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:01,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:01,081][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:04:01,082][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:01,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:01,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:01,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:01,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:01,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:01,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:04:01,084][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:01,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:01,084][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:04:01,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:01,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:04:01,090][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:04:01,091][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:04:01,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:04:01,092][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:04:01,092][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:04:01,092][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:04:01,093][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:04:01,093][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:04:01,094][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:04:01,094][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:04:01,094][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:04:01,095][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:04:01,095][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:04:01,469][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:04:01,469][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:04:01,469][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:04:01,469][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:04:01,469][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:01,605][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:04:01,605][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:04:01,606][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:04:01,813][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,813][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:04:01,813][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,814][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,814][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,814][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,814][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,815][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:04:01,815][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,820][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,820][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,821][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:04:01,821][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:04:01,822][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:04:01,822][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:04:01,822][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:04:01,822][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:04:01,823][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:04:01,823][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:04:01,823][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:04:01,823][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:04:01,824][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:32,683][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:18:32,683][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:32,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:32,684][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:32,684][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:32,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:32,685][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:32,685][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:32,685][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:18:32,685][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:18:32,685][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:18:32,686][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:18:32,687][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:32,687][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:32,698][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:18:32,699][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:32,699][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:32,699][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:32,699][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:32,699][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:32,700][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:32,700][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:32,701][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:18:32,701][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:18:32,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:32,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:32,701][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:18:32,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:32,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:32,702][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:18:32,703][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:32,703][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:32,708][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:18:32,709][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:32,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:32,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:32,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:32,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:32,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:32,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:18:32,712][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:18:32,712][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:18:32,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:18:32,713][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:18:32,713][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:18:34,670][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:18:34,670][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:18:34,670][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:18:34,670][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:18:34,670][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:18:35,012][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:18:35,465][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,465][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,465][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,466][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,466][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,466][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:18:35,466][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,471][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,471][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,471][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,471][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:35,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:18:35,472][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:18:35,472][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:18:35,472][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:18:35,473][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:18:35,473][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:18:35,474][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:35,474][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:35,475][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:35,475][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:35,476][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:35,476][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:35,476][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:35,477][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:35,477][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:35,478][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:18:35,478][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:18:35,478][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:18:35,478][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:18:35,479][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:18:35,479][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:18:35,479][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:18:35,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:35,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:35,508][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:18:35,508][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:35,509][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:35,509][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:35,509][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:35,509][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:35,510][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:35,510][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:35,511][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:18:35,512][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:18:35,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:35,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:35,512][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:18:35,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:35,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:35,512][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:18:35,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:35,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:18:35,520][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:18:35,520][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:18:35,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:18:35,522][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:18:35,523][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:18:35,523][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:18:35,523][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:18:35,523][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:18:35,523][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:18:35,523][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:18:35,524][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:18:35,524][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:18:35,524][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:18:35,524][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:18:35,915][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:18:35,915][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:18:35,915][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:18:35,915][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:18:35,915][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:18:36,061][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:18:36,062][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:18:36,248][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:18:36,249][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,249][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,249][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,249][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,250][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,250][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,251][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:18:36,251][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,254][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:18:36,256][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:18:36,256][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:18:36,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:18:36,257][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:18:36,258][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:18:36,258][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:18:36,258][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:18:36,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:18:36,259][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:10,898][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:20:10,902][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:10,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:10,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:10,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:10,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:10,904][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:10,905][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:10,909][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:10,909][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:10,910][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:20:10,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:10,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:10,928][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:20:10,933][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:10,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:10,938][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:10,938][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:10,938][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:10,941][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:10,941][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:10,944][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:20:10,945][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:10,945][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:20:10,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:10,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:10,946][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:10,946][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:20:10,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:10,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:10,947][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:20:10,947][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:20:10,948][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:20:10,948][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:20:10,949][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:20:10,949][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:20:10,949][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:20:10,949][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:20:10,949][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:20:10,949][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:20:10,949][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:20:10,950][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:20:10,951][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:20:10,952][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:20:10,952][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:10,952][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:10,952][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:20:10,952][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:20:10,952][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:20:10,952][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:20:10,952][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:20:11,335][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:20:11,336][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:20:11,336][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:20:11,336][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:11,336][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:11,502][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:11,705][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:20:11,706][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:20:11,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,708][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,708][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,708][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:20:11,708][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:20:11,715][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,716][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,716][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,716][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,716][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,716][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,717][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,717][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:11,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:20:11,718][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:20:11,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:20:11,721][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:20:11,722][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:11,722][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:11,722][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:20:11,725][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:11,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:35,596][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:20:35,597][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:35,597][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:35,597][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:35,597][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:35,597][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:35,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:35,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:20:35,599][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:20:35,599][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:20:35,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:35,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:35,893][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:20:35,893][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:35,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:35,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:35,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:35,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:35,895][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:35,895][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:35,896][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:35,897][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:20:35,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:35,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:35,897][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:35,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:35,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:35,898][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:20:35,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:35,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:35,907][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:20:35,908][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:35,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:35,908][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:35,908][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:35,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:35,910][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:35,910][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:35,912][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:20:35,912][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:20:35,912][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:35,912][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:35,912][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:20:35,913][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:20:35,913][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:20:35,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:20:35,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:20:36,287][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:20:36,287][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:20:36,287][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:20:36,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:36,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:36,425][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:36,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:36,636][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:20:36,637][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,637][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,637][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,637][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,638][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:20:36,638][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,643][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,643][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,643][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,643][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:20:36,643][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,644][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,644][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,644][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:36,644][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:20:36,644][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:20:36,644][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:20:36,646][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:20:36,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:36,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:36,646][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:20:36,647][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:36,647][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:42,437][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:20:42,438][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:42,438][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:42,439][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:42,439][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:42,439][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:42,439][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:42,439][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:20:42,440][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:20:42,440][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:20:42,441][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:42,441][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:42,632][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:20:42,633][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:42,633][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:42,633][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:42,633][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:42,633][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:42,634][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:42,634][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:42,636][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:42,636][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:42,636][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:20:42,637][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:42,637][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:42,642][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:20:42,644][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:42,644][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:42,644][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:42,644][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:42,644][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:42,645][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:42,645][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:42,646][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:42,646][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:20:42,646][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:20:42,647][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:20:42,647][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:20:42,750][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:20:42,750][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:20:42,750][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:20:42,750][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,751][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,752][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 10:20:42,752][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:20:46,178][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:20:46,179][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:46,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:46,180][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:46,180][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:46,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:46,181][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:46,181][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:46,183][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:20:46,183][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:20:46,183][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:20:46,184][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:20:46,184][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:20:46,552][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:20:46,552][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:20:46,552][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:20:46,552][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:46,552][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:46,686][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:20:46,686][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:20:46,686][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:20:46,687][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:20:46,862][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,862][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,862][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:20:46,862][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,863][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,863][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,863][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:20:46,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:20:46,869][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,870][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,870][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,870][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,870][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,870][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,870][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:20:46,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:20:46,871][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:20:46,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:20:46,872][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:20:46,873][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:20:46,873][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:20:46,873][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:20:46,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:46,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:20:48,036][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:20:48,036][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:20:48,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:20:48,037][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:20:48,037][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:20:48,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:20:48,037][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:20:48,038][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:20:48,038][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:20:48,039][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:20:48,039][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:06,889][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:21:06,889][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:06,889][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:06,890][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:06,890][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:06,890][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:06,890][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:06,890][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:06,891][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:21:06,891][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:21:06,891][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:21:06,892][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:21:06,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:06,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:06,900][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:21:06,901][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:06,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:06,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:06,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:06,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:06,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:06,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:06,903][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:06,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:06,903][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:21:06,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:06,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:06,911][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:21:06,912][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:06,912][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:06,912][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:06,912][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:06,912][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:06,913][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:06,913][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:06,914][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:06,915][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:06,915][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:21:06,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:21:06,916][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:21:06,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:21:07,288][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:21:07,288][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:21:07,288][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:21:07,288][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:07,288][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:07,416][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:21:07,416][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:21:07,416][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:21:07,416][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:21:07,416][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:07,417][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:21:07,599][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,599][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:21:07,599][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:21:07,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:21:07,605][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,605][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,605][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,605][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,605][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:21:07,605][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,606][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,606][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,606][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,606][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:21:07,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:07,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:21:07,607][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:21:07,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:21:07,608][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:21:07,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:07,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:07,608][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:21:07,609][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:07,609][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:19,043][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:21:19,043][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:19,044][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:19,044][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:19,044][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:19,044][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:19,045][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:19,045][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:21:19,046][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:21:19,046][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:21:19,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:19,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:19,173][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:21:19,174][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:19,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:19,174][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:19,174][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:19,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:19,175][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:19,175][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:19,177][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:19,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:19,177][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:21:19,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:19,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:19,185][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:21:19,186][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:19,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:19,186][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:19,186][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:19,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:19,187][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:19,187][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:19,188][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:21:19,188][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:21:19,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:19,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:19,188][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:19,189][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:19,189][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:21:19,189][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:21:19,190][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:21:19,190][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:21:19,559][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:21:19,559][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:21:19,559][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:21:19,559][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:19,559][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:19,684][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:19,863][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:21:19,863][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:21:19,863][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:21:19,863][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,864][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,864][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,864][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,864][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,865][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:21:19,865][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,871][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,871][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,872][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,872][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,872][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,872][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:19,872][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:19,873][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:19,873][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:19,873][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:21:19,873][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:21:19,873][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:21:19,873][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:21:19,873][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:21:19,873][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:21:19,874][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:19,874][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:19,874][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:21:19,875][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:19,875][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:20,229][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:21:20,229][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:20,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:20,230][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:20,230][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:20,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:20,231][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:20,231][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:21:20,232][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:21:20,232][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:21:20,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:20,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:20,262][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:21:20,263][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:20,263][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:20,264][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:20,264][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:20,264][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:20,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:20,265][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:20,266][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:20,266][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:20,267][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:21:20,267][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:20,267][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:21:20,273][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:21:20,274][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:21:20,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:21:20,274][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:21:20,274][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:21:20,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:21:20,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:21:20,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:21:20,276][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:20,277][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:21:20,277][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:21:20,277][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:21:20,277][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:21:20,277][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:21:20,278][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:21:20,278][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:21:20,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:21:20,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:21:20,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:21:20,645][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:21:20,645][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:21:20,645][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:21:20,645][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:20,645][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:21:20,800][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:21:20,801][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:21:20,967][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:21:20,968][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,968][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,968][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,968][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,969][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,969][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,969][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,970][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:21:20,970][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,975][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,975][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,975][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,975][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,976][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,976][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,976][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,976][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:21:20,976][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:21:20,977][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:21:20,977][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:21:20,977][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:21:20,978][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:21:20,978][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:21:20,978][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:21:20,978][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:21:20,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:21:20,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:35,320][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:26:35,320][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:35,320][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:35,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:35,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:35,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:35,321][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:35,321][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:26:35,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:26:35,323][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:26:35,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:35,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:35,355][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:26:35,355][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:35,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:35,356][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:35,356][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:35,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:35,357][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:35,357][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:35,357][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:26:35,357][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:35,358][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:35,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:35,365][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:26:35,366][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:35,366][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:35,366][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:35,366][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:35,366][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:35,367][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:35,367][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:26:35,368][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:26:35,368][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:26:35,368][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:26:35,369][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:26:35,369][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:26:35,369][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:26:35,369][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:26:35,370][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:26:35,370][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:26:35,370][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:26:35,370][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:26:35,370][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:26:35,786][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:26:35,786][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:26:35,786][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:26:35,787][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:26:35,787][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:26:35,929][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:26:35,930][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:26:36,106][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,106][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,108][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:26:36,108][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:26:36,111][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,112][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,112][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,112][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,112][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,112][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,113][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,113][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,113][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:36,113][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:26:36,113][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:26:36,113][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:26:36,114][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:26:36,115][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:26:36,115][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:26:36,115][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:26:36,115][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:26:36,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:36,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:36,832][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:26:36,832][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:36,833][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:36,833][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:36,833][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:36,833][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:36,834][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:36,834][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:26:36,835][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:26:36,836][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:26:36,836][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:36,836][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:36,997][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:26:36,998][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:36,999][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:36,999][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:36,999][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:36,999][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:37,000][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:37,000][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:37,002][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:26:37,003][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:26:37,003][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:37,003][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:37,003][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:26:37,003][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:37,003][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:37,003][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:26:37,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:37,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:26:37,012][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:26:37,013][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:26:37,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:26:37,013][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:26:37,013][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:26:37,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:26:37,014][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:26:37,014][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:26:37,015][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:26:37,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:26:37,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:26:37,016][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:26:37,016][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:26:37,016][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:26:37,016][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:26:37,017][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:26:37,017][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:26:37,017][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:26:37,017][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:26:37,442][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:26:37,442][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:26:37,442][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:26:37,442][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:26:37,442][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:26:37,579][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:26:37,765][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:26:37,765][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:26:37,765][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,766][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,766][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,767][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,767][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,767][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,768][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:26:37,768][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:26:37,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,776][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,776][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,776][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:26:37,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,777][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:26:37,777][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:26:37,777][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:26:37,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:26:37,778][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:26:37,778][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:26:37,778][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:26:37,779][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:26:37,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:26:37,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:27:29,339][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:27:29,339][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:27:29,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:27:29,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:27:29,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:27:29,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:27:29,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:27:29,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:27:29,341][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:27:29,341][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:27:29,341][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:27:29,342][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:27:29,343][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:27:29,343][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:27:29,358][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:27:29,358][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:27:29,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:27:29,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:27:29,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:27:29,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:27:29,359][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:27:29,359][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:27:29,360][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:27:29,360][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:27:29,360][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:27:29,360][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:27:29,360][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:27:29,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:27:29,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:27:29,361][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:27:29,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:27:29,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:27:29,368][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 10:27:29,369][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:27:29,369][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:27:29,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:27:29,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:27:29,370][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:27:29,371][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:27:29,371][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 10:27:29,372][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 10:27:29,372][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:27:29,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:27:29,373][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:27:29,373][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 10:27:29,373][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:27:29,373][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:27:29,374][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:27:29,374][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:27:29,374][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:27:29,374][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:27:29,675][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:27:29,675][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:27:29,675][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:27:29,675][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:27:29,675][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:27:29,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:27:30,009][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 10:27:30,009][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 10:27:30,009][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 10:27:30,010][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 10:27:30,010][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 10:27:30,011][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 10:27:30,011][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 10:27:30,011][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 10:27:30,012][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 10:27:30,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:27:30,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:09,477][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:28:09,478][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:09,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:09,478][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:09,478][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:09,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:09,479][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:09,480][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:09,480][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:28:09,481][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:28:09,481][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:28:09,482][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:28:09,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:09,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:09,497][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:28:09,498][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:09,498][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:09,498][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:09,499][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:09,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:09,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:09,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:09,501][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:09,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:09,501][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:28:09,502][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:09,502][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:09,510][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:28:09,512][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:09,512][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:09,513][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:09,513][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:09,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:09,514][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:09,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:09,516][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:09,516][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:28:09,517][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:28:09,517][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:28:13,122][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:28:13,123][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:28:13,123][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:28:13,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:13,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:13,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:28:13,239][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:13,239][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:28:13,397][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,397][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:28:13,397][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,398][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,398][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,398][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,399][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,399][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:28:13,400][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,409][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,409][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,409][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,410][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,410][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,410][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,410][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:28:13,411][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:28:13,411][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,411][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,411][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,411][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,411][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,412][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:13,412][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:13,413][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:13,413][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:28:13,413][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:28:13,413][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:28:13,413][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:28:13,413][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:28:13,413][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:28:13,414][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:28:13,414][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:28:13,414][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:28:13,416][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 10:28:13,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:13,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:13,417][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:13,418][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:13,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:13,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:13,418][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:13,420][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:13,420][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:13,420][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 10:28:13,420][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 10:28:13,420][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 10:28:13,423][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 10:28:13,423][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:13,424][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:13,477][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:28:13,478][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:13,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:13,478][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:13,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:13,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:13,479][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:13,479][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:13,480][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:13,481][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:28:13,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:13,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:13,481][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:13,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:13,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:13,481][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:28:13,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:13,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:13,491][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 10:28:13,492][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:13,492][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:13,492][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:13,492][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:13,492][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:13,494][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:13,495][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:28:13,497][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:13,498][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:13,498][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:28:13,498][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:28:13,498][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 10:28:13,498][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:28:13,498][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:28:13,499][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:28:13,499][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:28:13,499][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:28:13,499][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:28:13,781][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:28:13,781][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:28:13,781][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:28:13,781][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:13,781][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:13,876][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:13,877][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:28:13,980][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 10:28:13,980][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 10:28:13,980][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 10:28:13,982][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 10:28:13,982][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 10:28:13,983][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 10:28:13,983][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 10:28:13,984][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:13,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:29,330][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 10:28:29,330][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:29,331][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:29,331][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:29,331][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:29,331][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:29,332][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:29,332][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 10:28:29,333][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 10:28:29,334][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 10:28:29,334][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:29,335][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:34,046][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:28:34,047][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:34,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:34,047][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:34,047][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:34,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:34,048][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:34,049][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:34,052][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:34,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:34,053][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:28:34,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:34,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:28:34,062][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:28:34,063][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:28:34,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:28:34,064][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:28:34,064][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:28:34,064][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:28:34,065][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:28:34,065][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:28:34,065][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:28:34,065][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:34,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:28:34,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:28:34,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:28:34,067][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:28:34,067][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:28:34,067][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:34,067][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:28:34,068][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:28:34,068][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:28:34,068][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:28:34,068][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:28:34,357][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:28:34,357][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:28:34,357][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:28:34,357][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:34,357][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:34,479][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:28:34,479][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:28:34,479][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:28:34,479][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:28:34,480][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:28:34,645][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:28:34,645][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,646][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,646][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,646][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,646][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,647][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:28:34,647][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,652][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,652][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,652][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,653][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,653][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,653][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,653][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,653][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,653][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:28:34,654][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:28:34,654][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:28:34,654][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:28:34,655][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:28:34,655][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:28:34,655][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:28:34,655][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:28:34,656][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:28:34,656][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:29:24,287][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:29:24,289][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:29:24,291][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:29:24,291][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:29:24,292][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:29:24,292][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:29:24,293][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:29:24,293][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:29:24,295][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:24,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:24,296][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:29:24,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:29:24,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:29:24,307][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:29:24,308][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:29:24,309][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:29:24,310][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:29:24,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:29:24,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:29:24,313][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:29:24,314][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:29:24,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:29:24,317][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:29:24,318][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:29:24,318][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:29:24,318][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:29:24,318][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:29:24,319][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:29:24,319][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:29:24,320][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:29:24,320][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:29:24,320][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:29:24,320][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:29:24,320][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:29:24,320][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:29:24,320][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:29:27,639][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:29:27,657][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:29:27,657][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,658][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,659][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:27,660][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:29:37,810][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:29:37,812][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:29:37,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:29:37,813][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:29:37,813][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:29:37,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:29:37,814][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:29:37,814][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:29:37,816][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:29:37,817][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:29:37,817][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:37,817][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:37,817][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:29:37,817][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:37,817][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:37,818][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:29:37,819][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:29:37,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:29:37,832][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:29:37,833][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:29:37,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:29:37,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:29:37,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:29:37,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:29:37,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:29:37,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:29:37,838][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:29:37,839][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:29:37,839][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:29:37,839][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:29:37,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:29:37,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:29:37,840][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:29:37,840][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:29:37,840][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:29:37,840][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:29:37,840][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:29:37,841][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:29:37,841][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:29:37,842][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:29:37,842][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:29:37,842][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:29:37,842][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:29:37,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:29:37,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:29:37,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,137][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:29:41,138][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:30:15,026][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:30:15,029][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:30:15,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:30:15,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:30:15,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:30:15,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:30:15,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:30:15,032][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:30:15,034][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:30:15,034][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:30:15,034][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:30:15,034][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:30:15,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:30:15,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:30:15,035][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:30:15,036][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:30:15,036][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:30:18,564][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:30:18,564][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:30:18,564][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:30:18,564][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:30:18,564][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:30:18,688][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:30:18,689][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:30:18,848][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,848][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:30:18,848][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:30:18,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:30:18,854][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,854][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,854][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,854][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:30:18,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:30:18,856][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:30:18,856][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:30:18,856][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:30:18,857][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:30:18,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:30:18,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:31:42,091][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:31:42,092][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:42,092][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:42,092][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:42,092][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:42,093][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:42,094][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:42,095][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:42,096][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:31:42,097][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:31:42,097][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:42,097][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:42,097][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:31:42,097][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:42,097][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:42,097][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:31:42,098][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:31:42,098][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:31:42,111][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:31:42,113][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:42,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:42,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:42,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:42,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:42,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:42,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:31:42,117][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:42,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:42,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:31:42,118][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:31:42,118][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:31:42,119][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:31:42,119][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:31:42,119][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:31:42,119][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:31:42,119][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:31:42,119][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:31:45,627][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:31:45,628][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:31:45,628][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:31:45,628][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:31:45,628][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:31:45,741][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:31:45,742][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:31:45,922][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,922][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,924][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:31:45,924][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:31:45,943][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,944][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,944][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,944][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,944][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,944][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,944][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,945][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,945][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:31:45,945][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:31:45,945][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:31:45,945][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:31:45,946][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:31:45,947][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:31:45,947][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:31:45,948][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:31:45,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:31:45,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:31:48,462][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 10:31:48,463][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 10:31:48,463][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 10:31:48,463][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 10:31:48,463][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:48,464][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:48,464][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:48,464][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:48,464][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:48,465][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:48,465][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss1 -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss1 -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:48,467][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:31:48,467][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:31:48,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:31:48,468][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:31:48,468][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:31:48,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:31:48,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:48,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:31:48,469][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:31:48,469][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 10:31:48,469][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:31:48,469][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:31:48,470][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:31:48,470][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:31:48,470][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:31:48,470][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:31:51,747][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,748][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:51,749][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 10:31:55,006][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:31:55,007][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:55,008][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:55,010][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:55,010][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:55,010][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:55,011][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:55,011][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:55,013][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:31:55,013][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:31:55,013][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:55,013][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:55,013][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:31:55,013][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:55,014][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:55,014][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:31:55,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:31:55,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:31:55,031][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:31:55,033][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:55,033][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:55,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:55,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:55,034][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:55,036][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:55,036][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:55,039][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:31:55,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:31:55,039][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:55,039][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:55,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:55,040][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:55,040][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:31:55,040][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:31:55,041][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:31:55,041][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:31:55,041][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:31:55,041][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:31:55,041][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:31:55,041][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:31:55,042][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,324][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:31:58,325][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:31:59,560][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:31:59,561][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:31:59,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:31:59,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:31:59,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:31:59,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:31:59,563][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:31:59,563][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:31:59,564][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:59,565][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:59,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:31:59,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:31:59,566][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:31:59,566][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:31:59,566][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:31:59,566][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:31:59,567][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:31:59,567][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:31:59,567][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:31:59,567][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:31:59,868][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:31:59,869][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:31:59,869][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:31:59,869][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:31:59,869][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:31:59,981][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:31:59,982][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:31:59,982][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:31:59,982][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:31:59,982][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:31:59,982][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:32:00,129][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:32:00,129][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:32:00,129][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:32:00,129][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,130][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,130][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:32:00,130][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,131][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,131][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:32:00,131][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:32:00,136][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,136][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,136][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,136][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,137][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,137][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,137][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,137][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,138][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,138][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,138][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,138][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:00,138][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:32:00,138][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:32:00,138][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:32:00,139][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:32:00,139][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:00,139][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:00,140][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:32:00,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:00,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:32:04,528][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 10:32:04,528][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 10:32:04,529][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 10:32:04,529][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 10:32:04,529][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:04,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:04,530][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:04,530][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:04,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:04,531][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:04,531][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss1 -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss1 -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:04,534][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:32:04,534][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:32:04,535][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:04,535][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:04,535][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:32:04,535][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:32:04,536][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:32:04,536][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:04,536][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:04,536][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:04,537][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 10:32:04,537][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:04,537][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:04,538][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:04,538][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:04,538][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,812][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:07,813][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 10:32:36,046][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:32:36,047][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:36,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:36,048][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:36,048][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:36,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:36,050][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:36,050][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:36,052][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:36,053][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:32:36,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:36,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:36,053][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:36,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:36,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:36,053][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:32:36,054][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:36,054][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:32:36,063][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:36,065][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:36,065][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:36,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:36,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:36,066][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:36,067][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:36,067][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:36,068][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:36,068][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:36,068][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:36,068][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:36,068][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:36,069][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:36,069][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:36,069][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:36,070][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:36,070][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:39,364][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:32:39,364][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,365][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,366][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:39,366][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:32:40,564][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:40,565][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:40,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:40,565][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:40,565][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:40,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:40,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:40,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:40,569][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:40,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:40,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:40,570][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:40,570][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:40,570][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:40,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:40,571][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:40,571][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:40,571][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:40,571][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,858][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:43,859][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:32:43,860][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:32:43,860][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:43,861][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:43,861][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:43,862][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:43,862][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:43,863][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:43,863][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:43,864][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:43,864][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:32:43,864][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:43,865][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:43,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:32:43,875][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:43,876][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:43,876][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:43,876][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:43,876][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:43,876][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:43,877][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:43,877][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:43,878][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:43,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:43,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:43,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:43,879][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:43,880][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:43,880][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:43,880][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:43,880][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:43,880][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:43,881][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:45,300][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:32:45,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:32:45,301][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:32:45,301][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:32:45,301][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:32:45,405][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:32:45,406][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:45,406][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:45,406][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:32:45,406][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:32:45,406][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:32:45,568][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:32:45,569][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,569][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,569][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,569][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,569][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,570][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:32:45,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:32:45,575][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,576][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,576][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,576][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,576][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,576][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,576][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,577][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,577][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:45,577][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:32:45,577][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:32:45,577][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:45,577][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:45,577][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:32:45,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:45,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:32:49,138][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 10:32:49,140][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:49,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:49,141][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:49,141][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:49,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:49,144][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:49,144][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:49,146][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:49,146][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:49,147][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 10:32:49,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:49,148][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:32:49,158][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:49,159][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:49,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:49,160][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:49,160][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:49,160][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:49,161][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:49,162][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:49,163][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:49,163][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:49,163][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:49,163][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:49,163][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:49,163][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:49,164][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:49,164][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:49,164][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:49,164][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,442][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:52,443][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:32:53,631][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:53,633][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:53,634][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:53,634][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:53,634][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:53,634][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:53,636][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:53,636][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:53,638][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:53,638][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:53,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:53,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:53,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:53,639][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:53,639][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:53,639][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:53,640][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:53,640][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:53,641][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:53,641][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:53,641][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:53,641][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:53,642][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:56,974][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:32:56,974][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:32:56,974][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:32:56,974][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:32:56,976][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 10:32:58,001][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 10:32:58,002][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:32:58,003][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:32:58,003][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:32:58,003][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:32:58,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:32:58,004][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:32:58,004][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:32:58,007][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 10:32:58,007][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 10:32:58,007][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:32:58,007][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:32:58,007][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:58,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 10:32:58,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:32:58,008][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:32:58,008][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 10:32:58,008][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 10:32:58,008][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:32:58,009][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:32:58,009][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:32:58,009][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:32:58,009][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:32:59,447][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:32:59,447][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:32:59,447][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:32:59,447][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:32:59,447][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:32:59,583][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:32:59,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:32:59,727][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 10:32:59,727][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,728][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,728][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 10:32:59,728][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,729][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,729][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,729][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,730][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 10:32:59,730][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,735][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,735][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,737][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,737][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 10:32:59,737][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 10:32:59,737][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 10:32:59,737][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 10:32:59,737][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 10:32:59,738][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 10:32:59,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:32:59,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:33:01,391][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 10:33:01,392][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 10:33:01,392][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 10:33:01,392][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 10:33:01,392][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:33:01,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:33:01,393][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:33:01,393][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:33:01,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:33:01,394][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:33:01,394][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss1 -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss1 -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:01,397][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:01,397][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:33:01,397][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:33:01,398][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:33:01,398][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:01,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:01,398][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:01,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:33:01,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:01,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:01,399][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:33:01,399][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:33:01,399][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:33:01,400][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:33:01,400][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 10:33:01,400][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:33:01,400][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:33:01,401][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:33:01,401][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:33:01,401][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:33:01,401][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:33:01,401][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:33:01,401][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:33:01,401][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:33:01,706][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:33:01,706][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:33:01,706][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:33:01,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:33:01,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:33:01,837][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:33:01,838][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:33:01,933][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:33:01,934][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 10:33:01,934][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:33:01,934][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:33:01,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:33:01,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:33:01,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:33:02,223][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 10:33:02,223][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 10:33:02,223][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 10:33:02,223][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:33:02,223][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 10:33:02,317][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 10:33:02,318][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 10:33:02,420][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 10:33:02,420][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 10:33:02,421][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 10:33:02,421][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 10:33:02,422][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 10:33:02,423][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 10:33:02,423][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 10:33:02,423][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 10:33:02,424][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 10:33:02,424][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 10:33:16,416][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 10:33:16,417][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 10:33:16,417][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 10:33:16,417][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 10:33:16,417][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 10:33:16,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 10:33:16,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 10:33:16,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 10:33:16,418][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 10:33:16,419][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 10:33:16,419][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss1 -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss1 -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:16,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:16,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:33:16,423][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:33:16,423][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:33:16,424][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:16,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 10:33:16,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 10:33:16,424][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 10:33:16,424][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 10:33:16,424][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 10:33:16,425][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 10:33:16,425][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 10:33:16,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 10:33:16,426][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 10:33:16,426][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 10:33:16,426][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 10:33:19,730][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 10:33:19,730][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,731][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,732][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 10:33:19,732][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 11:56:48,183][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 11:56:48,184][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:56:48,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:56:48,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:56:48,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:56:48,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:56:48,185][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:56:48,185][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:56:48,185][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 11:56:48,186][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 11:56:48,186][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 11:56:48,187][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 11:56:48,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 11:56:48,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 11:56:48,199][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:56:48,200][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:56:48,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:56:48,201][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 11:56:48,201][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 11:56:48,201][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:56:48,201][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:56:48,201][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 11:56:48,202][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:56:48,202][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:56:48,202][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 11:56:48,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 11:56:48,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 11:56:48,211][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 11:56:48,213][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:56:48,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:56:48,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:56:48,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:56:48,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:56:48,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:56:48,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 11:56:48,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 11:56:48,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 11:56:48,216][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 11:56:48,216][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 11:56:48,216][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 11:56:48,217][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 11:56:48,217][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 11:56:48,217][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 11:56:48,217][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 11:56:48,217][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 11:56:48,882][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 11:56:48,882][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 11:56:48,882][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 11:56:48,883][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 11:56:48,883][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 11:56:49,366][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 11:56:49,792][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,792][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,792][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 11:56:49,792][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,793][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,793][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 11:56:49,793][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,797][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 11:56:49,797][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 11:56:49,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 11:56:49,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 11:56:49,799][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 11:56:49,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 11:56:49,800][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 11:56:49,800][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 11:56:49,800][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 11:56:49,800][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 11:56:49,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 11:56:49,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 11:58:17,349][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-11 11:58:17,351][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:58:17,351][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:58:17,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:58:17,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:58:17,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:58:17,354][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:58:17,354][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:58:17,356][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-11 11:58:17,356][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-11 11:58:17,356][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-11 11:58:17,356][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-11 11:58:17,356][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-11 11:58:17,357][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:58:17,357][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:58:17,360][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-11 11:58:17,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 11:58:17,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 11:58:17,391][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 11:58:17,392][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:58:17,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:58:17,392][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:58:17,392][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:58:17,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:58:17,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:58:17,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:58:17,393][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 11:58:17,393][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 11:58:17,393][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 11:58:17,395][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 11:58:17,396][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 11:58:17,396][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 11:58:17,410][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-11 11:58:17,411][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 11:58:17,411][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 11:58:17,412][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 11:58:17,412][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 11:58:17,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 11:58:17,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 11:58:17,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 11:58:17,414][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-11 11:58:17,414][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-11 11:58:17,414][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-11 11:58:17,414][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:58:17,415][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:58:17,415][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:Failed] 'GlobalSettings' object has no attribute 'connections' -[2026-02-11 11:58:17,415][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 'GlobalSettings' object has no attribute 'connections' -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 11:59:46,792][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 11:59:46,792][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 11:59:47,467][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 11:59:47,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:47,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:47,467][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:47,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:47,473][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,474][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,475][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 11:59:47,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,475][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,475][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:47,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:47,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:47,478][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:47,857][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:47,857][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 11:59:47,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 11:59:47,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 11:59:47,859][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 11:59:47,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:47,860][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:47,860][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:48,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:48,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:48,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 11:59:48,157][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 11:59:48,157][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 11:59:48,157][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 11:59:48,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 11:59:48,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:48,158][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 11:59:48,158][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 11:59:48,159][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 11:59:48,159][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 11:59:48,160][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:48,160][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:48,160][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:48,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:48,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:48,170][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:48,170][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 11:59:48,170][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 11:59:48,171][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 11:59:48,171][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 11:59:48,186][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 11:59:48,186][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 11:59:48,188][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 11:59:48,188][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 11:59:48,188][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 11:59:48,188][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 11:59:48,188][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 11:59:48,189][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:48,189][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:48,189][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 11:59:48,189][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 11:59:48,189][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 11:59:48,189][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 11:59:48,229][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 11:59:48,230][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:48,230][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 11:59:48,383][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:48,383][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 11:59:48,384][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 11:59:48,384][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 11:59:53,100][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 11:59:53,101][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 11:59:53,101][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 11:59:53,101][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 11:59:53,101][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 11:59:53,101][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 11:59:53,102][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 11:59:53,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 11:59:53,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:53,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:53,852][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,857][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,858][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 11:59:53,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:53,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,860][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:53,860][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:53,861][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:53,862][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:53,862][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 11:59:53,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:53,862][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:53,862][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:54,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:54,111][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:54,111][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 11:59:54,111][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 11:59:54,112][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 11:59:54,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 11:59:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:54,113][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:54,113][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:54,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:54,525][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:54,525][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 11:59:54,526][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 11:59:54,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 11:59:54,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 11:59:54,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 11:59:54,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:54,527][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 11:59:54,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 11:59:54,528][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 11:59:54,528][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 11:59:54,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 11:59:54,541][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 11:59:54,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 11:59:54,542][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 11:59:54,542][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 11:59:54,542][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 11:59:54,556][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 11:59:54,557][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 11:59:54,557][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 11:59:54,557][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 11:59:54,558][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:54,558][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 11:59:54,558][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 11:59:54,558][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 11:59:54,612][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 11:59:54,612][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 11:59:54,612][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 11:59:54,773][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 11:59:54,773][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 11:59:54,773][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 11:59:54,773][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 11:59:54,773][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 11:59:54,773][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 11:59:54,774][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 11:59:54,774][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 12:03:51,578][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-11 12:03:51,580][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:03:51,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:03:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:03:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:03:51,584][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:03:51,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:03:51,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:03:51,590][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-11 12:03:51,590][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-11 12:03:51,590][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-11 12:03:51,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:03:51,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:03:51,591][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-11 12:03:51,591][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-11 12:03:51,591][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-11 12:03:51,592][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:03:51,592][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:09,343][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:04:09,344][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:09,344][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:09,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:09,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:09,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:09,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:09,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:09,346][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:04:09,347][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:04:09,347][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:04:09,348][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:04:09,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:09,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:11,864][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:04:11,865][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:11,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:11,865][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:11,865][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:11,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:11,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:11,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:11,866][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:04:11,866][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:04:11,866][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:04:11,867][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:04:11,868][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:11,868][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:14,225][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:04:14,226][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:14,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:14,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:14,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:14,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:14,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:14,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:14,227][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:04:14,227][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:04:14,227][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:04:14,228][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:04:14,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:14,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:14,242][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:04:14,242][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:14,242][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:14,243][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:14,243][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:14,243][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:14,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:14,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:04:14,245][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:14,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:14,245][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:04:14,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:14,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:14,252][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:04:14,254][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:14,254][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:14,254][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:14,254][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:14,255][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:14,255][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:14,255][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:04:14,256][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:04:14,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:04:14,257][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:04:14,257][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:04:14,257][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:04:14,257][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:04:14,257][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:04:14,257][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:04:14,258][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:04:14,258][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:04:14,699][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:04:14,699][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:04:14,699][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:04:14,699][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:04:14,699][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:04:15,052][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:04:15,052][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:04:15,053][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:04:15,311][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:04:15,312][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,312][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,312][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:04:15,312][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,313][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,313][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,313][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:04:15,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,321][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,321][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,321][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:04:15,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:04:15,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:04:15,323][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:04:15,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:04:15,324][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:04:15,324][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:04:15,324][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:04:15,324][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:04:15,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:15,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:15,616][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:04:15,617][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:15,617][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:15,618][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:15,618][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:15,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:15,619][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:15,619][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:04:15,620][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:04:15,620][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:04:15,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:15,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:21,936][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:04:21,937][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:21,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:21,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:21,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:21,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:21,939][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:21,939][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:21,942][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:04:21,942][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:04:21,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:21,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:21,943][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:04:21,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:21,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:21,943][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:04:21,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:04:21,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:04:21,954][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:04:21,954][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:04:21,955][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:04:21,955][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:04:21,955][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:04:21,955][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:04:21,956][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:04:21,956][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:04:21,956][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:04:21,956][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:04:21,957][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:04:21,957][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:04:21,957][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:04:21,957][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:04:21,957][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:04:21,957][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:04:21,958][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:04:21,958][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:04:21,958][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:04:21,958][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:04:25,264][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 12:04:25,264][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,265][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:04:25,266][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 12:08:54,158][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:08:54,158][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:08:54,158][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:08:54,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:08:54,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:08:54,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:08:54,160][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:08:54,161][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:08:54,161][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:08:54,161][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:08:54,161][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:08:54,162][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:08:54,163][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:08:54,163][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:08:54,175][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:08:54,176][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:08:54,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:08:54,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:08:54,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:08:54,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:08:54,177][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:08:54,177][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:08:54,178][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:08:54,178][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:08:54,178][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:08:54,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:08:54,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:08:54,188][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:08:54,189][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:08:54,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:08:54,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:08:54,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:08:54,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:08:54,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:08:54,191][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:08:54,193][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:08:54,193][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:08:54,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:08:54,194][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:08:54,194][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:08:54,194][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:08:54,194][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:08:54,194][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:08:54,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:08:54,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,471][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,472][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,472][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:08:57,473][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 12:09:04,989][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 12:09:04,989][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 12:09:04,989][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 12:09:04,989][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 12:09:04,990][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 12:09:04,990][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 12:09:04,990][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 12:09:07,217][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 12:09:07,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:09:07,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:09:07,217][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 12:09:07,221][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 12:09:07,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,222][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,222][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:09:07,223][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,225][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,226][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 12:09:07,428][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 12:09:07,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 12:09:07,430][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 12:09:07,430][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 12:09:07,430][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 12:09:07,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,685][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,686][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 12:09:07,686][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 12:09:07,687][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 12:09:07,687][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 12:09:07,687][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:09:07,687][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 12:09:07,687][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 12:09:07,688][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:09:07,688][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:09:07,698][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:09:07,698][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:09:07,698][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 12:09:07,698][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 12:09:07,710][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 12:09:07,711][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 12:09:07,711][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 12:09:07,712][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 12:09:07,713][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:09:07,713][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 12:09:07,713][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 12:09:07,713][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 12:09:07,752][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 12:09:07,752][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:09:07,752][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:09:07,883][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 12:09:07,883][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 12:09:07,883][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 12:09:07,883][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 12:09:07,884][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 12:09:07,884][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 12:09:07,884][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 12:09:07,885][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 12:09:28,689][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:09:28,690][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:09:28,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:09:28,694][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:09:28,694][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:09:28,694][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:09:28,697][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:09:28,697][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:09:28,700][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:09:28,700][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:09:28,701][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:09:28,701][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:09:28,716][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:09:28,717][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:09:28,717][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:09:28,717][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:09:28,717][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:09:28,717][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:09:28,718][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:09:28,718][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:09:28,718][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:09:28,718][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:09:28,718][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:09:28,720][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:09:28,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:09:28,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:09:28,941][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:09:28,942][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:09:28,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:09:28,942][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:09:28,942][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:09:28,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:09:28,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:09:28,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:09:28,946][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:09:28,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:09:28,946][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:09:28,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:09:28,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:09:28,959][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:09:28,960][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:09:28,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:09:28,961][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:09:28,961][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:09:28,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:09:28,962][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:09:28,962][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:09:28,963][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:09:28,963][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:09:28,963][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:09:28,963][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:09:28,964][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:09:28,964][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:09:28,964][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:09:28,964][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:09:28,964][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:09:28,964][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:09:28,965][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:09:28,965][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:09:28,965][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:09:28,965][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:09:30,393][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:09:30,393][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:09:30,393][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:09:30,393][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:09:30,393][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:09:30,507][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:09:30,508][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:09:30,508][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:09:30,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:09:30,508][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:09:30,508][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:09:30,710][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:09:30,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:09:30,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:09:30,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:09:30,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,720][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:09:30,720][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:09:30,720][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:09:30,720][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:09:30,720][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:09:30,720][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:09:30,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:09:30,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 12:09:50,168][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 12:09:50,168][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 12:10:47,311][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 12:10:47,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:10:47,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:10:47,311][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,315][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,316][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,316][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,317][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,318][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 12:10:47,319][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,319][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,319][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,509][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 12:10:47,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,510][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 12:10:47,510][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 12:10:47,511][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 12:10:47,512][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,512][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,764][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,765][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,765][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 12:10:47,766][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 12:10:47,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 12:10:47,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 12:10:47,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:10:47,766][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 12:10:47,766][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 12:10:47,767][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 12:10:47,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 12:10:47,768][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 12:10:47,768][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 12:10:47,768][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:10:47,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 12:10:47,778][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:10:47,778][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:10:47,778][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 12:10:47,778][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 12:10:47,779][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 12:10:47,779][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 12:10:47,791][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 12:10:47,791][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 12:10:47,792][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 12:10:47,792][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 12:10:47,792][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:10:47,793][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 12:10:47,793][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 12:10:47,793][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 12:10:47,827][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 12:10:47,827][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 12:10:47,827][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 12:10:47,938][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 12:10:47,939][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:10:47,939][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 12:10:47,940][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 12:10:47,940][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 12:10:54,941][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:10:54,943][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:54,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:54,946][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-11 12:10:54,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-11 12:10:54,947][INFO][superset_tools_app] Response status: 401 for /api/plugins -[2026-02-11 12:10:54,962][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:10:54,963][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:54,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:54,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-11 12:10:54,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-11 12:10:54,964][INFO][superset_tools_app] Response status: 401 for /api/auth/me -[2026-02-11 12:10:57,358][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 12:10:57,359][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:57,360][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-11 12:10:57,360][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-11 12:10:57,360][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:10:57,362][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:10:57,362][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:10:57,550][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-11 12:10:57,553][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-11 12:10:57,553][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-11 12:10:57,553][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-11 12:10:57,553][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-11 12:10:57,555][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-11 12:10:57,555][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-11T09:10:57.555211][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-11 12:10:57,555][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-11 12:10:57,555][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-11 12:10:57,555][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-11 12:10:57,557][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-11 12:10:57,558][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-11 12:10:57,558][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-11 12:10:57,559][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:10:57,559][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:10:57,564][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:10:57,565][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:57,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:57,565][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:10:57,566][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:10:57,566][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:10:57,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:10:57,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:10:57,567][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:10:57,567][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:10:57,567][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:10:57,570][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:10:57,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:10:57,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:10:57,578][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:10:57,578][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:57,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:57,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:10:57,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:10:57,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:10:57,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:10:57,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:10:57,581][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:10:57,582][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:10:57,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:10:57,583][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:10:57,794][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:10:57,796][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:57,797][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:57,797][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:10:57,797][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:10:57,797][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:10:57,799][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:10:57,799][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:10:57,801][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:10:57,801][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:10:57,802][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:10:57,802][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:10:57,802][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:10:57,802][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:10:57,802][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:10:57,802][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:10:57,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:10:57,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:10:57,810][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:10:57,812][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:10:57,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:10:57,812][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:10:57,812][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:10:57,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:10:57,813][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:10:57,813][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:10:57,814][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:10:57,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:10:57,815][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:10:57,815][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:10:57,815][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:10:57,815][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:10:57,815][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:10:57,816][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:10:57,816][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:10:57,816][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:10:57,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:10:57,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:10:57,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:10:59,262][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:10:59,263][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:10:59,263][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:10:59,263][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:10:59,263][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:10:59,384][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:10:59,527][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,527][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,527][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:10:59,527][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,528][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,528][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,528][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:10:59,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,537][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,537][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:10:59,537][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,538][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,538][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,538][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,538][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,538][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,539][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:10:59,539][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:10:59,539][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:10:59,539][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:10:59,539][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:10:59,539][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:10:59,540][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:10:59,540][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:37:41,162][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:37:41,163][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:41,163][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:41,163][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:41,163][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:41,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:41,164][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:41,165][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:41,165][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:37:41,165][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:37:41,165][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:37:41,166][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:37:41,167][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:37:41,167][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:37:41,184][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:37:41,185][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:41,185][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:41,185][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:41,185][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:41,185][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:41,186][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:41,186][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:37:41,187][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:37:41,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:37:41,187][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:37:41,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:37:41,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:37:41,194][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:37:41,195][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:41,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:41,195][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:41,195][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:41,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:41,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:41,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:41,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:41,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:37:41,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:37:41,198][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:37:41,198][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:37:41,198][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:37:41,198][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:37:41,199][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:37:41,199][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:37:41,199][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:37:41,199][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:37:41,199][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:37:44,485][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,486][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,487][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 12:37:44,487][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 12:37:48,687][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:37:48,691][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:48,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:48,691][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:48,692][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:48,692][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:48,696][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:48,696][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:48,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:48,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:37:48,701][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:37:48,702][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:37:48,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:37:49,953][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 12:37:49,953][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 12:37:49,953][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 12:37:49,953][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,953][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,954][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 12:37:49,955][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 12:37:51,342][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:37:51,345][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:51,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:51,346][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:51,346][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:51,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:51,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:51,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:51,348][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:51,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:37:51,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:37:51,349][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:37:51,349][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:37:51,349][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:37:51,349][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:37:51,350][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:37:51,350][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:37:51,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:37:51,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:37:51,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:37:52,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:37:52,816][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:37:52,817][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:37:52,817][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:37:52,817][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:37:52,952][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:37:52,952][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:37:52,952][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:37:52,952][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:37:52,953][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:37:53,124][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,124][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,126][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:37:53,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,132][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,132][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,132][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,132][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:37:53,132][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,133][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,133][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,133][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:37:53,133][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:37:53,133][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:37:53,133][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:37:53,133][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:37:53,134][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:37:53,135][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:37:53,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:37:53,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:37:53,153][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:37:53,153][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:37:53,153][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:37:53,154][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:37:53,154][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:37:53,155][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:37:53,155][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:37:53,156][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:37:53,156][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:01,546][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:38:01,547][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:01,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:01,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:01,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:01,548][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:01,549][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:01,549][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:01,549][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:38:01,549][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:38:01,549][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:38:01,550][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:38:01,550][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:01,550][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:01,564][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:38:01,565][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:01,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:01,565][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:01,565][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:01,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:01,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:01,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:01,567][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:01,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:01,568][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:38:01,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:01,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:01,577][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 12:38:01,578][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:01,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:01,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:01,579][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:01,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:01,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:01,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:01,581][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:01,581][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:01,581][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:38:01,582][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:38:01,582][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 12:38:01,582][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:38:01,582][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:38:01,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:38:01,583][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:38:01,583][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:38:01,875][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:38:01,875][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:38:01,875][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:38:01,875][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:01,875][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:02,056][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:02,175][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:38:02,176][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 12:38:02,176][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 12:38:02,176][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 12:38:02,177][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 12:38:02,177][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 12:38:02,177][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 12:38:02,178][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 12:38:02,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:02,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:19,153][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 12:38:19,154][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:19,155][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:19,155][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:19,155][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:19,155][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:19,156][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:19,156][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=2, page_size=10 -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:19,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:19,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:38:19,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:38:19,159][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:38:19,159][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 12:38:19,159][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:38:19,159][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:38:19,159][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:38:19,160][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:38:19,160][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:38:20,603][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:38:20,603][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:38:20,603][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:38:20,604][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:20,604][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:20,705][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:38:20,705][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:38:20,705][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:38:20,705][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:38:20,705][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:20,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:38:20,926][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 12:38:20,926][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 12:38:20,926][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 2/3, total: 26) -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 12:38:20,926][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 12:38:20,927][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 12:38:20,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:20,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:25,749][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:38:25,750][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:25,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:25,751][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:25,751][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:25,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:25,751][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:25,752][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:25,752][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:38:25,752][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:38:25,752][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:38:25,753][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:38:25,754][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:25,754][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:27,980][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:38:27,981][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:27,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:27,981][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:27,981][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:27,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:27,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:27,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:27,982][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:38:27,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:38:27,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:38:27,983][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:38:27,983][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:27,983][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:33,710][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:38:33,711][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:33,711][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:33,711][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:33,711][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:33,711][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:33,712][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:33,712][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:33,713][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:38:33,713][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:38:33,713][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:38:33,714][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:38:33,715][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:33,715][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:35,641][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:38:35,642][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:35,642][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:35,642][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:35,642][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:35,642][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:35,643][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:35,643][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:38:35,644][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:38:35,644][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:38:35,645][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:35,645][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:35,791][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:38:35,791][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:35,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:35,792][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:35,792][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:35,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:35,793][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:35,793][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:35,794][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:35,794][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:35,794][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:38:35,796][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:35,796][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:35,804][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:38:35,805][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:35,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:35,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:35,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:35,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:35,806][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:35,806][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:35,808][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:38:35,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:35,809][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:38:35,809][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:38:35,809][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:38:35,809][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:38:35,809][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:38:35,809][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:38:35,810][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:38:35,810][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:38:37,250][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:38:37,250][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:38:37,250][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:38:37,250][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:37,250][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:37,359][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:38:37,549][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,549][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,549][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,550][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,550][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,550][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,550][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,551][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:38:37,551][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,557][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,557][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,557][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,557][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,558][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,558][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,558][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:37,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:38:37,559][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:38:37,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:38:37,560][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:38:37,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:38:37,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:38:37,561][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:38:37,561][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 12:38:37,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:37,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:37,563][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:37,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:37,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:37,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:37,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:37,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:37,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:37,565][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 12:38:37,566][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 12:38:37,566][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 12:38:37,566][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 12:38:37,566][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 12:38:37,566][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 12:38:37,566][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 12:38:37,567][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:37,567][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:37,600][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 12:38:37,601][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:37,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:37,602][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:37,602][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:37,602][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:37,603][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:37,603][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:37,604][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:37,604][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:37,604][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 12:38:37,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:37,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:37,623][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 12:38:37,624][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:37,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:37,624][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:37,624][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:37,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:37,625][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:37,625][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:37,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 12:38:37,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 12:38:37,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 12:38:37,628][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 12:38:37,628][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 12:38:37,628][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 12:38:37,628][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 12:38:37,628][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 12:38:37,629][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 12:38:37,629][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 12:38:37,912][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 12:38:37,912][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 12:38:37,912][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 12:38:37,912][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:37,912][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:38,024][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 12:38:38,025][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 12:38:38,201][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,201][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,201][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,202][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,202][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,202][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,202][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,203][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 12:38:38,203][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 12:38:38,207][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,207][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,207][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,208][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,208][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,208][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,208][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,209][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,209][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,209][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,209][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 12:38:38,209][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 12:38:38,209][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 12:38:38,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 12:38:38,210][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 12:38:38,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 12:38:38,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 12:38:38,211][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 12:38:38,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:38,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:45,774][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-11 12:38:45,775][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:45,776][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:45,776][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:45,776][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:45,776][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:45,777][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:45,777][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:45,779][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-11 12:38:45,779][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-11 12:38:45,779][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-11 12:38:45,779][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-11 12:38:45,779][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-11 12:38:45,779][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:38:45,780][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:38:45,781][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-11 12:38:45,782][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:45,782][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:45,802][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 12:38:45,802][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:45,803][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:45,804][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 12:38:45,804][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 12:38:45,804][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 12:38:45,804][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 12:38:45,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:45,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 12:38:45,816][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-11 12:38:45,817][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 12:38:45,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 12:38:45,817][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 12:38:45,817][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 12:38:45,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 12:38:45,818][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 12:38:45,818][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 12:38:45,818][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-11 12:38:45,819][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-11 12:38:45,819][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-11 12:38:45,819][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 12:38:45,819][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 12:38:45,819][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-11 12:38:45,819][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-11 12:38:45,819][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-11 12:38:45,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 12:38:45,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 13:34:14,877][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 13:34:14,878][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 13:34:14,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 13:34:14,878][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 13:34:14,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 13:34:14,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 13:34:14,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 13:34:14,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 13:34:14,879][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 13:34:14,880][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 13:34:14,880][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 13:34:14,880][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 13:34:14,881][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 13:34:14,881][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 13:34:14,893][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 13:34:14,893][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 13:34:14,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 13:34:14,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 13:34:14,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 13:34:14,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 13:34:14,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 13:34:14,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 13:34:14,895][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 13:34:14,895][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 13:34:14,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 13:34:14,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 13:34:14,896][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 13:34:14,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 13:34:14,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 13:34:14,896][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 13:34:14,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 13:34:14,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 13:34:14,903][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 13:34:14,905][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 13:34:14,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 13:34:14,905][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 13:34:14,905][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 13:34:14,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 13:34:14,906][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 13:34:14,906][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 13:34:14,908][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 13:34:14,908][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 13:34:14,908][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 13:34:14,909][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 13:34:14,909][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,185][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 13:34:18,186][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 14:36:18,847][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 14:36:18,848][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:36:18,848][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:36:18,848][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:36:18,848][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:36:18,849][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:36:18,850][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:36:18,851][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:36:18,851][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 14:36:18,851][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 14:36:18,851][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 14:36:18,854][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 14:36:18,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:36:18,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:36:18,878][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 14:36:18,879][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:36:18,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:36:18,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:36:18,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:36:18,880][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:36:18,880][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:36:18,880][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:36:18,881][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:36:18,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:36:18,882][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 14:36:18,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:36:18,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:36:18,894][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 14:36:18,895][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:36:18,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:36:18,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:36:18,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:36:18,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:36:18,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:36:18,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 14:36:18,898][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:36:18,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:36:18,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 14:36:18,899][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 14:36:18,899][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 14:36:18,899][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:36:18,899][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:36:18,900][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 14:36:18,900][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 14:36:18,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 14:36:18,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 14:36:18,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 14:36:20,160][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 14:36:20,160][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 14:36:20,160][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 14:36:20,160][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:36:20,160][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 14:36:20,705][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:36:20,706][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 14:36:20,958][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 14:36:20,958][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 14:36:20,958][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 14:36:20,959][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 14:36:20,959][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 14:36:20,959][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:36:20,959][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:36:20,959][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 14:36:20,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:36:20,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:36:32,137][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 14:36:32,138][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:36:32,138][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:36:32,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:36:32,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:36:32,139][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:36:32,140][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:36:32,140][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:36:32,142][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=2, page_size=10 -[2026-02-11 14:36:32,142][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:36:32,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:36:32,143][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:36:32,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 14:36:32,144][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 14:36:32,144][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 14:36:32,144][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 14:36:32,144][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 14:36:32,145][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 14:36:32,145][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 14:36:32,145][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 14:36:33,586][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 14:36:33,587][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 14:36:33,587][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 14:36:33,587][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:36:33,587][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 14:36:33,700][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:36:33,701][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:36:33,701][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 14:36:33,701][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:36:33,701][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:36:33,825][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 14:36:33,826][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 14:36:33,826][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 14:36:33,826][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 2/3, total: 26) -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:36:33,826][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:36:33,826][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 14:36:33,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:36:33,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:40:24,031][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 14:40:24,031][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 14:40:24,031][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 14:40:24,031][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 14:40:24,032][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 14:40:24,032][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 14:40:24,032][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 14:40:24,689][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 14:40:24,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:40:24,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:40:24,689][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 14:40:24,692][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,693][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,694][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:24,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,695][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:24,695][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:24,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:24,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:24,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 14:40:24,866][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 14:40:24,867][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:24,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:25,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:25,143][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:25,144][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:25,144][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 14:40:25,145][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 14:40:25,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 14:40:25,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 14:40:25,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:40:25,145][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 14:40:25,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 14:40:25,146][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 14:40:25,146][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 14:40:25,147][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 14:40:25,154][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 14:40:25,155][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:40:25,155][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 14:40:25,155][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 14:40:25,155][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 14:40:25,165][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 14:40:25,165][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 14:40:25,166][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 14:40:25,166][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 14:40:25,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 14:40:25,166][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 14:40:25,199][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 14:40:25,199][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 14:40:25,199][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 14:40:25,324][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 14:40:25,324][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 14:40:25,325][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 14:40:25,325][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 14:41:06,584][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 14:41:06,584][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:41:06,585][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:41:06,588][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:41:06,588][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:41:06,588][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:41:06,590][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:41:06,590][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:41:06,590][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 14:41:06,590][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 14:41:06,590][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 14:41:06,594][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 14:41:06,596][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:41:06,596][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:41:06,613][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 14:41:06,613][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:41:06,614][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:41:06,614][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:41:06,614][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:41:06,614][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:41:06,615][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:41:06,615][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:41:06,616][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:06,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:06,617][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 14:41:06,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:41:06,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:41:06,629][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 14:41:06,631][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:41:06,631][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:41:06,631][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:41:06,631][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:41:06,631][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:41:06,632][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:41:06,632][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:41:06,633][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:41:06,633][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:41:06,633][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 14:41:06,634][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 14:41:06,634][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 14:41:09,923][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 14:41:31,705][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 14:41:31,706][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:41:31,706][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:41:31,706][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:41:31,707][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:41:31,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:41:31,708][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:41:31,708][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:41:31,709][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:31,709][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 14:41:31,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:41:31,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 14:41:31,716][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 14:41:31,717][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 14:41:31,718][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 14:41:31,718][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 14:41:31,718][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 14:41:31,718][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 14:41:31,719][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 14:41:31,719][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 14:41:31,720][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 14:41:31,720][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 14:41:31,720][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 14:41:31,720][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 14:41:31,720][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:41:31,721][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 14:41:31,721][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 14:41:31,721][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 14:41:31,721][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 14:41:31,721][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 14:41:31,721][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 14:41:31,727][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 14:41:31,727][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 14:41:31,727][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 14:41:31,727][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 14:41:32,043][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 14:41:32,043][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 14:41:32,043][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 14:41:32,043][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:41:32,043][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:41:32,140][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 14:41:32,141][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 14:41:32,255][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 14:41:32,255][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 14:41:32,255][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 14:41:32,256][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 14:41:32,256][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 14:41:32,256][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 14:41:32,257][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 14:41:32,257][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 14:41:32,257][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:32,023][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 15:41:32,028][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:32,029][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:32,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:32,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:32,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:32,032][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:32,032][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:32,032][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 15:41:32,032][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 15:41:32,033][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 15:41:32,034][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 15:41:32,035][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:32,035][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:32,057][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 15:41:32,058][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:32,058][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:32,059][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:32,059][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:32,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:32,059][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:32,060][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:32,061][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:32,061][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:32,062][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 15:41:32,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:32,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:32,071][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:41:32,072][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:32,072][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:32,072][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:32,072][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:32,072][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:32,073][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:32,073][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:32,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:32,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:32,074][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:32,075][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:32,075][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:35,365][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,366][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,367][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,367][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,367][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,367][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,367][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,368][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:41:35,368][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 15:41:39,989][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:41:39,990][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:39,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:39,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:39,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:39,991][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:39,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:39,992][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:39,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:39,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:39,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:39,994][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:39,994][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:41,108][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:41:41,108][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:41:41,108][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:41:41,108][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:41,108][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:41,629][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:41,630][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:41,861][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:41:41,861][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:41:41,861][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:41:41,861][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:41,861][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:41,862][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:41:41,862][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:41:41,862][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:41:41,862][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:41:41,862][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:41:41,864][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 15:41:41,864][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:41,864][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:41,865][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 15:41:41,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:41,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:42,697][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 15:41:42,698][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:42,698][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:42,698][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:42,698][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:42,698][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:42,699][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:42,699][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:42,699][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 15:41:42,699][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 15:41:42,699][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 15:41:42,701][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 15:41:42,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:42,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:42,722][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 15:41:42,723][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:42,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:42,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:42,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:42,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:42,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:42,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:42,726][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:42,726][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:42,727][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 15:41:42,728][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:42,728][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:42,749][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 15:41:42,753][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:42,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:42,756][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:42,756][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:42,757][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:42,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:42,759][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:42,763][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:41:42,763][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 15:41:42,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:42,764][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:42,764][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:42,764][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:42,764][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 15:41:42,764][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 15:41:42,765][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 15:41:42,765][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:42,765][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:42,765][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:42,771][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:42,771][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:42,771][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:42,771][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:43,082][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:41:43,082][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:41:43,082][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:41:43,082][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:43,082][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:43,406][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:41:43,406][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:43,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:43,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:41:43,408][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:43,408][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:43,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:41:43,773][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:41:43,773][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 15:41:43,773][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 15:41:43,773][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 15:41:43,773][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 15:41:43,773][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 15:41:43,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,774][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 15:41:43,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 15:41:43,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,776][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 15:41:43,776][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 15:41:43,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,777][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,777][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,777][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,778][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,778][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,785][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 15:41:43,786][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 15:41:43,794][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,794][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,794][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,794][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,794][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 15:41:43,794][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:41:43,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 15:41:43,796][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 15:41:43,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 15:41:43,798][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 15:41:43,798][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 15:41:43,798][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 15:41:43,798][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 15:41:43,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:43,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:50,039][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 15:41:50,041][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:50,041][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:50,042][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:50,043][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:50,043][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:50,044][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:50,045][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:50,045][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 15:41:50,045][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 15:41:50,045][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 15:41:50,048][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 15:41:50,049][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:50,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:50,070][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 15:41:50,072][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:50,072][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:50,072][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:50,072][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:50,072][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:50,074][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:50,074][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:50,076][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:50,076][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 15:41:50,076][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:50,076][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:50,077][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:41:50,077][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:50,077][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:50,077][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 15:41:50,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:50,079][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:50,085][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:41:50,086][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:50,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:50,087][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:50,087][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:50,087][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:50,088][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:50,088][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:50,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:50,089][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:50,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:50,090][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:50,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:53,606][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:41:53,606][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:41:53,606][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:41:53,606][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:53,606][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:53,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:53,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:41:53,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:41:53,835][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:41:53,835][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:41:53,836][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:41:53,836][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:53,836][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:53,836][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 15:41:53,837][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:53,837][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:54,948][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-11 15:41:54,949][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:54,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:54,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:54,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:54,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:54,951][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:54,951][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:54,952][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-11 15:41:54,952][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-11 15:41:54,952][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:54,952][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:54,952][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:54,953][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:54,953][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:54,953][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:54,953][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:41:54,953][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:41:54,953][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:54,954][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:54,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:54,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:54,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:55,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:41:55,254][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:41:55,254][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:41:55,254][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:55,254][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:55,357][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:41:55,456][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:41:55,456][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:41:55,457][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:41:55,457][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:41:55,457][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:41:55,458][INFO][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:OK] Returning 26 dataset IDs -[2026-02-11 15:41:55,458][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:OK] -[2026-02-11 15:41:55,458][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Exit] -[2026-02-11 15:41:55,458][INFO][superset_tools_app] Response status: 200 for /api/datasets/ids -[2026-02-11 15:41:55,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:55,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:41:58,694][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:41:58,695][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:41:58,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:41:58,696][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:41:58,696][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:41:58,696][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:41:58,698][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:41:58,698][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:41:58,700][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=2, page_size=10 -[2026-02-11 15:41:58,700][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:41:58,700][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:41:58,700][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:58,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:41:58,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:41:58,701][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:41:58,701][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:41:58,701][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:41:58,701][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:41:58,702][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:41:58,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:41:58,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:41:58,702][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:41:59,005][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:41:59,005][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:41:59,006][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:41:59,006][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:59,006][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:59,104][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:41:59,104][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:41:59,105][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:41:59,211][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:41:59,211][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:41:59,212][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:41:59,212][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:41:59,212][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:41:59,212][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 2/3, total: 26) -[2026-02-11 15:41:59,212][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:41:59,212][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:41:59,213][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 15:41:59,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:41:59,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:01,146][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:42:01,146][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:01,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:01,147][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:01,147][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:01,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:01,148][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:01,148][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:01,149][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=3, page_size=10 -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:01,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:01,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:01,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:01,151][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:01,151][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,430][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:04,431][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 15:42:11,778][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:42:11,779][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:11,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:11,780][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:11,781][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:11,781][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:11,782][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:11,782][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:11,784][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:11,784][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:11,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:11,785][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:11,785][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:12,109][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:42:12,109][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:42:12,109][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:42:12,110][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:12,110][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:12,207][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:42:12,207][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:12,208][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:12,313][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:42:12,314][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:42:12,314][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:42:12,314][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:42:12,316][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 15:42:12,317][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:42:12,317][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:42:12,317][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 15:42:12,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:42:12,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:14,987][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-11 15:42:14,988][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:14,988][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:14,988][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:14,988][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:14,988][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:14,989][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:14,989][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:14,990][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:14,991][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:14,991][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:14,991][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:14,991][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:42:14,991][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:14,991][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:14,992][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:14,992][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:14,992][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:14,992][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:14,992][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:14,992][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:14,992][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:14,992][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,271][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,272][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,272][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,272][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,272][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:18,273][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-11 15:42:18,279][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-11 15:42:18,281][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:18,282][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:18,283][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:18,283][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:18,283][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:18,284][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:18,284][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:18,286][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:18,286][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:18,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:18,287][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:18,287][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:42:18,287][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:18,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:18,287][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:18,288][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:18,288][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:21,577][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:21,578][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-11 15:42:35,061][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 15:42:35,062][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:35,062][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:35,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:35,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:35,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:35,063][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:35,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=2, page_size=10 -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:35,065][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:35,065][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:35,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:35,066][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:35,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:38,594][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:42:38,595][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:42:38,595][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:42:38,595][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:38,595][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:38,697][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:42:38,697][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:42:38,697][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:42:38,697][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:42:38,697][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:38,698][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:38,799][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:42:38,799][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:42:38,799][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 15:42:38,799][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:42:38,799][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:42:38,799][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 15:42:38,800][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 15:42:38,800][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 15:42:38,800][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 15:42:38,800][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 15:42:38,800][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 2/3, total: 26) -[2026-02-11 15:42:38,800][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 15:42:38,800][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 15:42:38,801][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 15:42:38,802][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 15:42:38,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:42:38,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:38,805][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:38,807][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:38,807][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:38,807][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:38,807][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:38,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:38,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:38,810][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 15:42:38,810][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 15:42:38,810][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 15:42:38,812][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 15:42:38,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:42:38,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:38,902][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 15:42:38,903][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:38,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:38,905][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:38,905][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:38,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:38,908][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:38,908][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:42:38,910][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:38,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:38,911][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 15:42:38,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:42:38,912][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:38,921][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 15:42:38,922][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:38,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:38,922][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:38,922][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:38,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:38,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:38,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:38,926][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 15:42:38,926][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 15:42:38,926][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:38,926][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:38,927][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 15:42:38,927][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:38,927][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 15:42:38,928][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:38,928][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:38,928][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:38,928][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:38,928][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 15:42:38,928][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 15:42:38,928][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:38,929][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:38,930][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:38,930][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:38,930][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:38,930][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:38,930][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:38,930][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:38,930][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:39,218][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 15:42:39,219][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 15:42:39,219][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 15:42:39,219][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:39,219][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:39,331][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 15:42:39,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 15:42:39,476][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 15:42:39,476][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 15:42:39,476][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,477][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,477][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,477][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,477][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,478][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 15:42:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 15:42:39,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 15:42:39,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 15:42:39,484][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 15:42:39,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 15:42:39,485][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 15:42:39,485][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 15:42:39,485][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 15:42:39,486][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 15:42:39,486][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 15:42:39,486][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 15:42:46,708][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 15:42:46,709][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 15:42:46,709][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 15:42:46,709][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 15:42:46,710][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 15:42:46,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 15:42:46,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 15:42:46,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 15:42:46,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 15:42:46,711][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 15:42:46,711][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 15:42:46,712][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss1 -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss1 -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 15:42:46,713][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 15:42:46,713][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:46,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:46,714][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:46,714][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 15:42:46,714][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 15:42:46,714][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 15:42:46,714][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 15:42:46,714][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 15:42:46,715][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 15:42:46,715][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 15:42:46,715][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 15:42:46,715][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 15:42:46,715][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 15:42:46,715][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 15:42:49,992][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,993][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,994][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 15:42:49,994][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 15:59:56,647][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 15:59:56,648][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 15:59:56,648][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 15:59:56,648][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 15:59:56,648][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 15:59:56,648][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 15:59:56,648][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 15:59:57,326][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 15:59:57,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:59:57,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:59:57,326][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 15:59:57,329][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 15:59:57,329][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 15:59:57,329][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 15:59:57,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,331][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,331][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,332][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,332][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,333][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,333][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,534][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,534][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,534][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 15:59:57,535][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 15:59:57,536][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,536][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,828][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,828][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,828][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,828][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,829][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,829][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 15:59:57,830][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 15:59:57,830][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 15:59:57,830][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 15:59:57,830][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:59:57,830][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 15:59:57,830][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 15:59:57,831][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 15:59:57,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 15:59:57,832][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 15:59:57,832][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 15:59:57,841][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 15:59:57,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 15:59:57,842][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 15:59:57,842][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 15:59:57,842][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 15:59:57,854][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 15:59:57,854][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 15:59:57,855][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 15:59:57,855][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 15:59:57,855][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 15:59:57,855][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 15:59:57,855][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 15:59:57,856][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 15:59:57,856][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 15:59:57,856][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 15:59:57,856][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 15:59:57,856][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 15:59:57,856][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 15:59:57,897][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 15:59:57,897][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 15:59:57,897][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 15:59:58,031][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 15:59:58,031][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 15:59:58,031][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 15:59:58,032][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 15:59:58,032][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 15:59:58,032][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 15:59:58,033][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 15:59:58,033][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 15:59:58,033][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 15:59:58,033][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 16:01:06,980][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 16:01:06,980][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 16:01:06,980][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 16:01:06,981][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 16:01:06,981][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 16:01:06,981][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 16:01:06,981][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 16:01:07,534][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:01:07,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:01:07,534][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:01:07,534][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,537][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,538][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,538][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,539][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,539][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,540][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,540][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:01:07,721][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 16:01:07,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,966][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,967][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 16:01:07,967][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 16:01:07,967][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 16:01:07,968][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 16:01:07,968][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 16:01:07,968][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:01:07,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:01:07,969][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 16:01:07,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:01:07,970][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:01:07,970][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:01:07,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:01:07,983][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:01:07,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:01:07,983][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:01:07,984][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 16:01:07,984][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 16:01:08,002][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 16:01:08,002][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 16:01:08,004][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:01:08,004][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 16:01:08,004][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 16:01:08,004][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 16:01:08,060][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 16:01:08,060][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:01:08,060][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:01:08,231][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 16:01:08,231][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 16:01:08,231][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 16:01:08,231][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 16:01:08,232][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 16:01:08,232][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 16:01:08,232][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 16:02:13,033][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:02:13,036][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:13,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:13,039][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:13,039][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:13,039][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:13,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:13,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=25 -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:02:13,045][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:13,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:13,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:02:13,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:02:13,051][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:02:13,051][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:02:13,051][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:02:13,051][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:02:13,051][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:02:13,052][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:02:13,052][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:02:13,052][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:02:13,052][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:02:14,120][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:02:14,120][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:02:14,120][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:02:14,120][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:02:14,120][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:02:15,676][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:02:15,677][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:02:16,297][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:02:16,298][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,298][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,298][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:02:16,298][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,302][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:02:16,302][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,306][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,306][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,306][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,306][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,306][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,306][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:02:16,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:02:16,307][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:02:16,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:02:16,309][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 13 dashboards (page 1/1, total: 13) -[2026-02-11 16:02:16,309][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:02:16,309][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:02:16,309][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:02:16,310][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:16,310][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:31,690][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:31,691][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:31,692][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:31,692][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:31,692][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:31,692][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:31,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:31,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:31,693][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:31,693][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:31,693][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:31,694][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:31,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:31,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:31,706][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:02:31,707][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:31,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:31,707][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:31,707][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:31,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:31,708][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:31,708][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:02:31,709][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:31,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:31,709][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:02:31,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:31,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:31,719][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:02:31,720][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:31,720][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:31,721][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:31,721][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:31,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:31,721][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:31,721][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:31,722][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:31,722][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:31,723][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:02:31,723][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:31,723][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:31,723][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:02:31,723][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:02:31,723][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:02:31,728][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:02:31,728][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:02:31,728][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:02:31,728][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:31,729][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:31,729][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:02:31,729][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:02:31,729][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:02:31,729][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:02:31,729][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:02:32,059][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:02:32,059][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:02:32,060][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:02:32,060][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:02:32,060][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:02:32,431][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:02:32,431][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:02:32,431][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:02:32,431][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:02:32,432][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:02:32,621][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:02:32,621][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:02:32,622][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 16:02:32,622][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 16:02:32,622][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 16:02:32,623][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 16:02:32,623][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:02:32,623][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:02:32,623][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 16:02:32,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:32,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:33,912][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:33,913][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:33,913][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:33,913][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:33,913][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:33,913][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:33,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:33,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:33,915][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:33,915][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:33,915][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:33,916][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:33,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:33,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:36,807][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:36,807][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:36,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:36,808][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:36,808][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:36,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:36,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:36,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:36,809][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:36,809][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:36,809][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:36,810][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:36,811][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:36,811][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:38,878][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:38,878][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:38,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:38,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:38,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:38,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:38,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:38,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:38,880][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:38,880][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:38,880][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:38,881][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:38,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:38,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:38,896][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-11 16:02:38,897][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-11 16:02:38,898][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:38,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:38,898][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:38,898][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:38,898][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:38,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:38,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:38,899][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:38,900][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:38,900][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:38,900][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:38,900][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:38,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:38,903][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:38,903][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-11 16:02:38,903][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-11 16:02:38,903][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-11 16:02:38,904][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-11 16:02:38,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:38,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:38,907][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-11 16:02:38,908][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-11 16:02:38,908][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-11 16:02:38,908][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-11 16:02:38,909][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:38,909][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:41,066][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:41,067][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:41,067][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:41,067][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:41,067][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:41,067][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:41,068][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:41,068][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:41,068][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:41,068][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:41,068][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:41,070][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:41,070][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:41,070][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:41,082][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-11 16:02:41,083][INFO][superset_tools_app] Incoming request: GET /api/admin/permissions -[2026-02-11 16:02:41,083][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:41,084][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:41,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:41,084][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:41,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:41,084][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:41,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:41,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:41,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:41,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:41,085][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:41,086][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:41,086][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:41,086][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:41,088][DEBUG][superset_tools_app] [api.admin.list_permissions][Entry] -[2026-02-11 16:02:41,088][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [AuthRepository.list_permissions][Entry] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Coherence:OK] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Exit] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Coherence:OK] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Exit] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-11 16:02:41,089][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-11 16:02:41,090][INFO][superset_tools_app] Response status: 200 for /api/admin/permissions -[2026-02-11 16:02:41,090][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-11 16:02:41,090][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:41,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:41,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:41,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:44,760][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-11 16:02:44,762][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:44,762][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:44,762][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:44,762][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:44,762][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:44,763][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:44,763][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:44,764][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-11 16:02:44,764][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-11 16:02:44,764][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-11 16:02:44,764][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-11 16:02:44,764][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-11 16:02:44,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:02:44,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:02:44,765][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-11 16:02:44,766][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:44,766][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:44,786][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:44,786][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:44,787][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:44,787][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:44,787][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:44,787][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:44,788][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:44,788][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:44,788][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:44,788][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:44,788][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:44,789][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:44,790][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:44,790][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:44,800][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-11 16:02:44,801][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:44,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:44,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:44,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:44,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:44,802][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:44,802][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:44,803][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-11 16:02:44,803][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-11 16:02:44,803][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-11 16:02:44,803][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:02:44,803][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:02:44,804][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-11 16:02:44,804][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-11 16:02:44,804][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-11 16:02:44,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:44,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:51,509][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:02:51,509][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:51,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:51,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:51,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:51,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:51,510][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:51,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:51,511][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:02:51,511][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:02:51,511][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:02:51,513][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:02:51,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:51,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:51,526][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:51,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:51,528][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:02:51,528][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:02:51,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:51,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:51,528][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:02:51,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:51,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:51,529][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:02:51,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:02:51,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:02:51,535][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:02:51,537][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:51,537][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:51,537][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:51,537][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:51,537][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:51,538][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:51,538][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:51,539][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:02:51,539][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:02:51,539][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:51,539][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:51,539][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:51,540][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:51,540][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:02:51,540][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:02:51,544][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:02:51,544][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:02:51,544][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:02:51,544][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:02:51,544][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:02:51,544][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:02:51,544][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:02:51,545][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:02:51,545][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:02:51,545][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:02:51,545][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,815][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,815][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,815][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:54,815][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 16:02:56,738][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:02:56,739][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:56,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:56,739][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:56,739][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:56,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:56,740][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:56,740][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:56,741][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:56,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:56,742][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:02:56,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:56,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:56,742][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:02:56,742][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:02:56,742][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:02:56,747][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:02:56,748][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:02:56,748][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:02:56,748][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:02:56,748][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:02:56,748][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:02:56,748][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:02:56,813][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:02:56,813][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 16:02:56,815][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 16:02:57,784][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:02:57,791][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:02:57,791][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:02:57,792][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:02:57,792][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:02:57,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:02:57,792][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:02:57,792][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:02:57,793][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:57,794][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:02:57,794][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:02:57,794][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:02:57,799][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:02:57,799][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:03:01,310][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:03:01,310][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:03:01,311][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:03:01,311][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:03:01,311][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:03:01,432][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:03:01,433][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:03:01,629][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,629][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,629][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,629][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,630][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:03:01,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,635][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,635][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,635][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,635][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,636][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,636][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,636][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,636][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:03:01,636][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:03:01,637][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:03:01,637][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:03:01,637][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:03:01,637][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:03:01,637][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:03:01,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:01,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:10,178][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 16:03:10,179][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:10,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:10,179][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:10,179][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:10,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:10,180][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:10,180][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 16:03:10,181][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 16:03:10,182][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 16:03:10,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:10,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:12,145][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:03:12,145][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:12,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:12,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:12,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:12,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:12,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:12,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:12,147][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:03:12,147][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:03:12,147][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:03:12,148][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:03:12,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:12,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:15,980][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:03:15,981][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:15,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:15,981][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:15,981][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:15,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:15,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:15,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:15,982][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:03:15,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:03:15,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:03:15,983][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:03:15,983][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:15,984][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:17,564][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 16:03:17,566][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:17,567][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:17,568][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:17,568][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:17,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:17,569][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:17,569][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 16:03:17,570][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 16:03:17,571][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 16:03:17,572][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:17,572][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:17,769][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:03:17,770][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:17,770][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:17,770][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:17,770][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:17,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:17,771][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:17,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:03:17,773][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:03:17,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:03:17,774][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:03:17,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:03:17,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:03:17,782][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:03:17,783][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:03:17,783][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:03:17,784][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:03:17,784][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:03:17,784][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:03:17,784][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:03:17,784][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:03:17,786][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:03:17,786][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:03:17,786][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:03:17,790][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:03:17,790][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:03:17,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:03:17,790][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:03:17,790][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:03:17,790][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:03:17,790][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:03:17,790][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:03:17,791][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:03:17,791][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:03:17,791][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:03:17,791][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,054][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:03:21,056][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 16:04:03,552][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 16:04:03,552][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 16:04:03,552][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 16:04:03,552][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 16:04:03,552][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 16:04:03,552][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 16:04:03,553][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 16:04:04,247][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:04:04,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:04:04,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:04:04,247][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,251][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,252][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,252][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,253][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:04:04,253][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,254][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,254][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,467][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 16:04:04,468][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:04:04,469][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,744][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,745][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,745][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 16:04:04,746][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 16:04:04,746][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 16:04:04,746][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 16:04:04,746][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 16:04:04,746][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:04:04,747][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:04:04,747][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:04:04,747][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:04:04,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:04:04,755][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:04:04,755][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:04:04,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:04:04,756][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:04:04,756][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:04:04,756][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:04:04,756][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 16:04:04,757][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 16:04:04,767][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 16:04:04,767][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 16:04:04,768][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:04:04,768][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 16:04:04,768][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 16:04:04,769][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 16:04:04,769][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 16:04:04,810][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 16:04:04,810][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:04:04,810][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 16:04:04,998][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:04:04,998][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 16:04:04,999][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 16:04:04,999][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 16:05:20,767][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 16:05:20,767][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 16:05:20,767][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 16:05:20,767][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 16:05:20,768][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 16:05:20,768][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 16:05:20,768][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 16:05:21,364][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:05:21,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:05:21,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:05:21,364][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:05:21,367][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,368][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,368][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,369][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:05:21,369][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,370][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,370][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,563][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,563][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,564][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 16:05:21,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:05:21,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:05:21,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,566][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,845][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,846][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 16:05:21,846][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 16:05:21,846][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 16:05:21,847][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 16:05:21,847][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 16:05:21,847][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:05:21,847][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:05:21,847][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:05:21,848][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:05:21,848][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:05:21,859][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:05:21,860][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:05:21,860][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:05:21,860][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 16:05:21,860][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 16:05:21,870][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 16:05:21,870][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 16:05:21,871][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 16:05:21,871][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 16:05:21,871][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 16:05:21,871][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 16:05:21,871][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 16:05:21,871][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 16:05:21,872][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:05:21,872][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 16:05:21,872][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 16:05:21,872][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 16:05:21,912][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 16:05:21,912][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:05:21,912][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:05:22,039][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 16:05:22,040][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:05:22,040][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 16:05:22,041][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 16:05:22,041][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 16:05:22,041][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 16:05:22,041][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 16:05:22,042][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 16:05:22,042][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 16:05:22,042][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 16:09:09,169][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:09:09,172][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:09,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:09,177][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:09,177][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:09,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:09,180][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:09,181][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:09,188][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:09,188][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:09,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:09,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:09,189][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:09,189][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:09,194][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:09,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:09,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:12,696][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:09:12,697][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:09:12,697][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:09:12,697][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:12,697][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:12,834][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:09:12,835][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:12,836][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:12,836][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:09:12,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:12,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:13,022][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:09:13,022][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:09:13,023][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,023][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,028][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:09:13,028][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:09:13,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:09:13,034][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:09:13,034][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:09:13,034][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:09:13,035][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:09:13,035][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:13,035][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:17,803][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:09:17,804][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:17,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:17,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:17,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:17,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:17,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:17,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:17,810][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:09:17,811][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:09:17,811][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:09:17,813][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:09:17,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:17,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:17,827][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:09:17,828][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:17,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:17,829][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:17,829][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:17,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:17,830][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:17,830][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:09:17,831][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:17,831][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:17,831][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:09:17,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:17,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:17,839][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:09:17,841][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:17,841][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:17,842][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:17,842][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:17,842][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:17,843][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:17,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:17,846][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:17,846][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:17,846][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:17,851][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:17,851][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:17,851][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:09:17,851][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:17,851][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:17,852][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:17,852][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:17,852][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:17,852][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:21,110][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:09:21,110][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:09:21,110][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,111][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:21,112][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 16:09:26,577][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:09:26,578][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:26,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:26,578][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:26,578][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:26,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:26,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:26,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:26,581][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:26,582][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:26,582][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:26,582][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:26,587][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:26,588][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:26,588][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:09:26,588][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:26,588][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:26,588][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:26,588][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:26,589][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:26,929][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:09:26,930][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:09:26,930][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:09:26,930][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:26,930][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:27,028][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:09:27,129][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 16:09:27,129][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 16:09:27,129][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 16:09:27,130][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 16:09:27,131][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:09:27,131][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:09:27,131][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 16:09:27,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:27,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:31,545][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:09:31,547][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:31,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:31,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:31,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:31,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:31,550][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:31,550][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:31,552][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=2, page_size=10 -[2026-02-11 16:09:31,552][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:31,553][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:31,553][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:31,553][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:31,554][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:31,554][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:31,559][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:31,559][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:31,559][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:09:31,559][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:31,559][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:31,560][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:31,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:31,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:31,560][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:31,560][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:31,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:31,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:31,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:34,871][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,873][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:34,874][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 16:09:42,278][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 16:09:42,279][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 16:09:42,279][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 16:09:42,279][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 16:09:42,279][INFO][superset_tools_app] Response status: 401 for /api/dashboards/db-mappings -[2026-02-11 16:09:51,321][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:09:51,321][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:51,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:51,322][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:51,322][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:51,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:51,323][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:51,324][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:51,324][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:09:51,324][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:09:51,324][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:09:51,326][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:09:51,328][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:51,328][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:51,348][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:09:51,348][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:51,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:51,349][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:51,349][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:51,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:51,351][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:51,351][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:51,353][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:09:51,354][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:09:51,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:51,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:51,354][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:09:51,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:51,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:51,354][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:09:51,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:51,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:09:51,365][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:09:51,366][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:51,366][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:51,366][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:51,367][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:51,367][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:51,368][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:51,368][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:09:51,370][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:51,371][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:51,371][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:51,371][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:51,379][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:51,379][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:51,379][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:09:51,380][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:51,380][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:51,380][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:51,381][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:51,381][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,675][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,676][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:09:54,676][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-11 16:09:57,191][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-11 16:09:57,192][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:09:57,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:09:57,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:09:57,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:09:57,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:09:57,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:09:57,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:57,196][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:57,196][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-11 16:09:57,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:09:57,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:09:57,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:09:57,197][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-11 16:09:57,197][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:09:57,197][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:09:57,203][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:09:57,203][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:09:57,203][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-11 16:09:57,203][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:09:57,203][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:09:57,204][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:09:57,204][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:57,204][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:57,204][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:09:57,204][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:09:57,204][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:09:57,204][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:09:57,204][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:09:57,490][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:09:57,490][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:09:57,490][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:09:57,490][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:57,490][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:09:57,593][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:09:57,594][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:09:57,701][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-11 16:09:57,701][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-11 16:09:57,701][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-11 16:09:57,702][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-11 16:09:57,703][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-11 16:09:57,703][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-11 16:09:57,703][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-11 16:09:57,704][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-11 16:09:57,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:09:57,705][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:27:34,246][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:27:34,246][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:27:34,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:27:34,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:27:34,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:27:34,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:27:34,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:27:34,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:27:34,248][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:27:34,248][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:27:34,248][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:27:34,249][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:27:34,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:27:34,251][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:27:36,856][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:27:36,856][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:27:36,856][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:27:36,857][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:27:36,857][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:27:36,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:27:36,858][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:27:36,858][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:27:36,858][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:27:36,858][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:27:36,858][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:27:36,859][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:27:36,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:27:36,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:27:36,873][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:27:36,873][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:27:36,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:27:36,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:27:36,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:27:36,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:27:36,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:27:36,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:27:36,884][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:27:36,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:27:36,884][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:27:36,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:27:36,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:27:36,892][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:27:36,892][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:27:36,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:27:36,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:27:36,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:27:36,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:27:36,893][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:27:36,893][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:27:36,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:27:36,895][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:27:36,896][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:27:36,896][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:27:36,900][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:27:36,900][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:27:36,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:27:37,351][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:27:37,351][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:27:37,351][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:27:37,351][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:37,351][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:37,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:27:37,849][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,849][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,849][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,850][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:27:37,850][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,855][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,855][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,856][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:27:37,856][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:27:37,857][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:27:37,857][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:27:37,857][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:27:37,857][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:27:37,857][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:27:37,858][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:27:37,858][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:27:37,858][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:27:37,858][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:27:37,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:27:37,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:27:47,746][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup -[2026-02-11 16:27:47,747][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:27:47,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:27:47,748][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:27:47,748][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:27:47,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:27:47,749][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:27:47,749][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:27:47,750][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=1, schedule=None -[2026-02-11 16:27:47,750][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 16:27:47,751][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 16:27:47,756][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task b277b026-e660-4a1b-9807-a24b7c28669f created and scheduled for execution -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] -[2026-02-11 16:27:47,756][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: id='b277b026-e660-4a1b-9807-a24b7c28669f' plugin_id='superset-backup' status= started_at=None finished_at=None user_id=None logs=[] params={'env': 'ss1', 'dashboards': [2], 'schedule': None} input_required=False input_request=None result=None for 1 dashboards -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:27:47,756][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:27:47,756][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task b277b026-e660-4a1b-9807-a24b7c28669f for plugin 'Superset Dashboard Backup' -[2026-02-11 16:27:47,757][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,758][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 16:27:47,758][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] -[2026-02-11 16:27:47,759][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] -[2026-02-11 16:27:47,759][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:27:47,759][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:27:47,763][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:27:47,763][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:27:47,763][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:27:47,938][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:47,941][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 16:27:47,942][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 16:27:49,181][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:27:49,182][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:27:49,182][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:27:49,182][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:49,182][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:49,298][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:27:49,298][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:27:49,298][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:49,299][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:49,461][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:27:49,461][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:27:49,461][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: TA-0001 Test dashboard][Entry] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Coherence:OK] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Exit] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:49,462][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:49,462][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:49,463][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:49,463][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:49,463][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:49,463][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:49,725][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:49,726][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260211T132749.zip. -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:49,726][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Entry] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Coherence:OK] -[2026-02-11 16:27:49,726][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Exit] -[2026-02-11 16:27:49,726][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard/dashboard_export_20260211T132749.zip -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Entry] -[2026-02-11 16:27:49,727][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 1 files according to retention policy -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Coherence:OK] -[2026-02-11 16:27:49,727][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Exit] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: USA Births Names][Entry] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Coherence:OK] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Exit] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:49,728][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 2. -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:49,728][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:49,942][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:49,944][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 16:27:49,944][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 16:27:50,074][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:50,075][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:50,076][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 2 to dashboard_export_20260211T132749.zip. -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:50,076][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Entry] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Coherence:OK] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Action] [Sanitize filename: dashboard_export_20260211T132749.zip][Exit] -[2026-02-11 16:27:50,076][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names/dashboard_export_20260211T132749.zip -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:50,076][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Entry] -[2026-02-11 16:27:50,076][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Sales Dashboard][Entry] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:50,077][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:50,077][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:50,416][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:50,445][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:50,446][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260211T132750.zip. -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:50,446][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Entry] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Exit] -[2026-02-11 16:27:50,446][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard/dashboard_export_20260211T132750.zip -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:50,446][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Entry] -[2026-02-11 16:27:50,447][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: COVID Vaccine Dashboard][Entry] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:50,447][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 10. -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:50,447][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:50,448][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:50,716][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:50,718][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 10 to dashboard_export_20260211T132750.zip. -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:50,718][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Entry] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Coherence:OK] -[2026-02-11 16:27:50,718][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Exit] -[2026-02-11 16:27:50,719][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard/dashboard_export_20260211T132750.zip -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Entry] -[2026-02-11 16:27:50,719][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:50,719][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Exit] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: test1][Entry] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Exit] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:50,720][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 12. -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:50,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:50,857][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 12 to dashboard_export_20260211T132750.zip. -[2026-02-11 16:27:50,857][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:50,858][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Entry] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Coherence:OK] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Exit] -[2026-02-11 16:27:50,858][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/test1/dashboard_export_20260211T132750.zip -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Entry] -[2026-02-11 16:27:50,858][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/test1 -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:50,858][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: World Bank's Data][Entry] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:50,859][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 1. -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:50,859][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:51,412][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:51,497][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 1 to dashboard_export_20260211T132750.zip. -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:51,497][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:51,498][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Entry] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Coherence:OK] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Action] [Sanitize filename: dashboard_export_20260211T132750.zip][Exit] -[2026-02-11 16:27:51,498][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data/dashboard_export_20260211T132750.zip -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Entry] -[2026-02-11 16:27:51,498][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:51,498][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: deck.gl Demo][Entry] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:51,499][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 4. -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:51,499][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:51,719][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:51,720][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 4 to dashboard_export_20260211T132751.zip. -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:51,720][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:51,721][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Entry] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Coherence:OK] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Exit] -[2026-02-11 16:27:51,721][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo/dashboard_export_20260211T132751.zip -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Entry] -[2026-02-11 16:27:51,721][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:51,721][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Misc Charts][Entry] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:51,722][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 3. -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:51,722][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:51,945][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:51,949][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 16:27:51,949][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 16:27:55,506][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:55,565][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:55,565][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:55,565][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:55,565][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:55,566][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 3 to dashboard_export_20260211T132751.zip. -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:55,566][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Entry] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Coherence:OK] -[2026-02-11 16:27:55,566][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Action] [Sanitize filename: dashboard_export_20260211T132751.zip][Exit] -[2026-02-11 16:27:55,567][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts/dashboard_export_20260211T132751.zip -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Entry] -[2026-02-11 16:27:55,567][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: FCC New Coder Survey 2018][Entry] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:55,567][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 11. -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:55,567][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:55,949][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:55,952][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 16:27:55,952][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 16:27:56,009][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:56,038][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 11 to dashboard_export_20260211T132755.zip. -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,038][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:56,039][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Entry] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Action] [Sanitize filename: dashboard_export_20260211T132755.zip][Exit] -[2026-02-11 16:27:56,039][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018/dashboard_export_20260211T132755.zip -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Entry] -[2026-02-11 16:27:56,039][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018 -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Exit] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,039][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Unicode Test][Entry] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Coherence:OK] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Exit] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:56,040][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 8. -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:56,040][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:56,121][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:56,122][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 8 to dashboard_export_20260211T132756.zip. -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:56,122][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Entry] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Coherence:OK] -[2026-02-11 16:27:56,122][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Exit] -[2026-02-11 16:27:56,123][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test/dashboard_export_20260211T132756.zip -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Entry] -[2026-02-11 16:27:56,123][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Video Game Sales][Entry] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:56,123][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 7. -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:56,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:56,313][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:56,314][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 7 to dashboard_export_20260211T132756.zip. -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:56,314][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:56,315][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Entry] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Coherence:OK] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Exit] -[2026-02-11 16:27:56,315][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales/dashboard_export_20260211T132756.zip -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Entry] -[2026-02-11 16:27:56,315][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales -[2026-02-11 16:27:56,315][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Featured Charts][Entry] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:56,316][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 6. -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:56,316][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:56,707][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:56,710][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:56,711][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 6 to dashboard_export_20260211T132756.zip. -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:56,711][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Entry] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Coherence:OK] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Exit] -[2026-02-11 16:27:56,711][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts/dashboard_export_20260211T132756.zip -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:56,711][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Entry] -[2026-02-11 16:27:56,712][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Slack Dashboard][Entry] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] -[2026-02-11 16:27:56,712][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 5. -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:27:56,712][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:27:56,994][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] -[2026-02-11 16:27:56,996][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 5 to dashboard_export_20260211T132756.zip. -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] -[2026-02-11 16:27:56,996][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Entry] -[2026-02-11 16:27:56,996][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Coherence:OK] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Action] [Sanitize filename: dashboard_export_20260211T132756.zip][Exit] -[2026-02-11 16:27:56,997][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard/dashboard_export_20260211T132756.zip -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Entry] -[2026-02-11 16:27:56,997][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Apply retention policy][Entry] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Coherence:OK] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Exit] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,997][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] -[2026-02-11 16:27:56,997][INFO][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [consolidate_archive_folders][Enter] Consolidating archives in /home/busya/dev/ss-tools-storage/backups/SS1 -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] -[2026-02-11 16:27:56,998][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Enter] Starting cleanup of empty directories in /home/busya/dev/ss-tools-storage/backups/SS1 -[2026-02-11 16:27:56,998][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Exit] Removed 0 empty directories. -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] -[2026-02-11 16:27:56,998][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] -[2026-02-11 16:27:56,999][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b277b026-e660-4a1b-9807-a24b7c28669f completed successfully -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 16:27:56,999][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:57,002][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 16:27:57,002][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 16:27:57,002][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b277b026-e660-4a1b-9807-a24b7c28669f -[2026-02-11 16:27:57,007][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 16:27:57,007][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 16:27:57,007][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b277b026-e660-4a1b-9807-a24b7c28669f execution finished with status: TaskStatus.SUCCESS -[2026-02-11 16:27:57,007][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] -[2026-02-11 16:27:57,007][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] -[2026-02-11 16:27:57,007][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup -[2026-02-11 16:27:57,008][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:27:57,009][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:30:09,133][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 16:30:09,134][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:30:09,135][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 2 validation errors: - {'type': 'missing', 'loc': ('body', 'username'), 'msg': 'Field required', 'input': None} - {'type': 'missing', 'loc': ('body', 'password'), 'msg': 'Field required', 'input': None} - - File "/home/busya/dev/ss-tools/backend/src/api/auth.py", line 38, in login_for_access_token - POST /api/auth/login -[2026-02-11 16:30:09,135][INFO][superset_tools_app] Response status: 422 for /api/auth/login -[2026-02-11 16:30:18,630][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 16:30:18,631][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:30:18,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 2 validation errors: - {'type': 'missing', 'loc': ('body', 'username'), 'msg': 'Field required', 'input': None} - {'type': 'missing', 'loc': ('body', 'password'), 'msg': 'Field required', 'input': None} - - File "/home/busya/dev/ss-tools/backend/src/api/auth.py", line 38, in login_for_access_token - POST /api/auth/login -[2026-02-11 16:30:18,632][INFO][superset_tools_app] Response status: 422 for /api/auth/login -[2026-02-11 16:30:44,680][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 16:30:44,680][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:30:44,681][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 2 validation errors: - {'type': 'missing', 'loc': ('body', 'username'), 'msg': 'Field required', 'input': None} - {'type': 'missing', 'loc': ('body', 'password'), 'msg': 'Field required', 'input': None} - - File "/home/busya/dev/ss-tools/backend/src/api/auth.py", line 38, in login_for_access_token - POST /api/auth/login -[2026-02-11 16:30:44,681][INFO][superset_tools_app] Response status: 422 for /api/auth/login -[2026-02-11 16:43:55,666][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:43:55,667][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:43:55,667][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:43:55,668][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:43:55,668][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:43:55,668][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:43:55,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:43:55,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:43:55,670][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:43:55,670][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:43:55,670][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:43:55,673][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:43:55,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:43:55,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:43:55,690][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:43:55,691][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:43:55,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:43:55,691][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:43:55,691][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:43:55,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:43:55,692][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:43:55,692][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:43:55,693][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:43:55,693][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:43:55,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:43:55,700][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:43:55,701][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:43:55,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:43:55,702][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:43:55,702][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:43:55,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:43:55,703][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:43:55,703][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:43:55,704][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:43:55,704][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:43:55,704][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:43:55,709][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:43:55,709][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:43:55,709][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:43:55,709][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:43:55,709][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:43:55,709][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:43:55,710][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:43:55,710][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:43:55,710][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:43:55,710][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:43:56,079][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:43:56,079][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:43:56,079][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:43:56,079][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:43:56,079][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:43:56,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:43:56,671][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,671][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,671][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,671][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,671][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,671][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:43:56,672][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,677][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,677][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,677][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,678][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,678][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,678][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,678][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:43:56,678][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,679][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:43:56,679][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:43:56,679][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:43:56,679][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:43:56,680][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:43:56,680][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:43:56,680][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:43:56,681][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:43:56,682][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:43:56,682][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:39,576][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:45:39,577][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:39,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:39,578][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:39,578][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:39,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:39,579][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:39,579][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:39,582][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:39,582][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:39,582][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:45:39,583][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:45:39,583][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:39,591][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:45:39,593][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:39,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:39,594][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:39,594][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:39,594][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:39,595][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:39,595][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:39,597][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:45:39,597][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:45:39,597][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:39,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:39,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:45:39,598][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:45:39,599][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:45:39,607][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:45:39,607][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:45:39,607][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:45:39,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:45:39,608][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:45:39,608][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:45:39,608][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:45:39,608][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:45:39,608][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:45:39,919][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:45:39,920][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:45:39,920][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:45:39,920][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:45:39,920][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:45:40,029][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:45:40,190][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:45:40,190][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:45:40,190][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:45:40,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:45:40,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,191][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,191][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,191][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,192][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:45:40,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:45:40,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,200][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,200][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,200][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:40,200][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:45:40,200][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:45:40,201][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:45:40,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:45:40,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:45:40,202][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:45:40,202][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:45:40,202][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:45:40,202][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:45:40,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:45:40,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:45,307][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:45:45,308][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:45,308][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:45,308][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:45,309][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:45,309][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:45,310][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:45,310][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:45,311][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:45,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:45,311][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:45:45,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:45:45,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:45,322][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:45:45,322][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:45,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:45,323][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:45,323][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:45,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:45,324][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:45,324][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:45:45,325][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:45,326][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:45,326][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:45:45,326][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:45:45,327][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:45:45,332][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:45:45,332][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:45:45,332][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:45:45,332][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:45:45,332][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:45:45,332][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:45:45,332][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:45:45,332][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:45:45,333][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:45:45,333][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:45:45,333][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:45:45,333][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:45:45,681][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:45:45,681][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:45:45,681][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:45:45,681][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:45:45,681][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:45:45,810][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:45:45,972][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,972][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,973][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,973][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,973][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,973][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,973][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,974][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:45:45,974][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,979][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,979][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,979][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,979][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:45:45,979][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,980][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,980][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,980][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:45:45,980][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:45:45,980][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:45:45,981][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:45:45,981][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:45:45,981][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:45:45,983][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:45:45,984][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:45:45,984][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:45:45,984][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:45:45,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:45:45,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:57,333][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:45:57,334][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:57,334][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:57,334][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:57,334][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:57,334][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:57,335][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:57,335][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:57,337][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:57,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:57,338][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:45:57,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:45:57,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:45:57,348][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:45:57,350][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:45:57,350][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:45:57,350][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:45:57,350][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:45:57,351][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:45:57,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:45:57,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:45:57,353][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:57,354][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:45:57,354][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:45:57,354][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:45:57,360][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:45:57,361][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:45:57,361][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,651][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:00,652][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 16:46:27,603][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:46:27,604][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:46:27,606][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:46:27,607][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:46:27,607][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:46:27,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:46:27,615][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:46:27,615][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:46:27,618][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:46:27,618][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:46:27,619][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:46:27,620][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:46:27,620][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:46:27,634][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:46:27,637][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:46:27,637][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:46:27,638][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:46:27,638][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:46:27,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:46:27,639][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:46:27,639][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:46:27,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:46:27,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:46:27,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:46:27,642][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:46:27,642][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:46:27,648][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:46:27,648][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:46:27,648][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:46:27,648][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:46:27,649][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:46:27,649][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:46:27,649][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:46:27,649][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:46:27,649][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:46:30,909][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,910][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:46:30,911][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 16:47:17,873][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:47:17,874][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:47:17,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:47:17,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:47:17,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:47:17,875][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:47:17,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:47:17,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:47:17,877][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:47:17,877][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:47:17,878][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:47:17,878][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:47:17,878][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:47:17,884][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:47:17,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:47:17,885][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:47:18,200][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:47:18,201][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:47:18,201][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:47:18,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:47:18,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:47:18,319][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:47:18,319][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:47:18,320][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:47:18,478][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:47:18,479][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:47:18,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,480][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,480][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:47:18,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,485][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,485][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:47:18,485][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,486][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,486][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,486][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,486][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,486][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:47:18,486][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:47:18,487][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:47:18,487][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:47:18,487][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:47:18,487][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:47:18,487][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:47:18,487][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:47:18,488][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:47:18,488][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:47:18,488][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:47:18,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:47:18,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:47:27,040][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 16:47:27,040][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 16:47:27,041][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 16:47:27,041][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 16:47:27,042][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:47:27,042][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:47:27,042][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:47:27,042][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:47:27,042][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:47:27,043][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:47:27,043][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:47:27,044][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 16:47:27,044][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 16:47:27,044][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:47:27,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:47:27,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:27,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:27,046][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 16:47:27,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:47:27,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:47:27,051][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:47:27,052][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:47:27,052][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:47:27,052][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:47:27,052][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:47:27,052][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:47:27,057][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:47:27,058][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 16:47:27,058][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:47:27,058][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:47:27,058][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:47:27,058][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:47:27,058][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:47:30,314][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 16:47:30,314][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,315][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 16:47:30,316][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 16:50:34,313][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 16:50:34,313][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:50:34,313][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:50:34,314][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:50:34,314][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:50:34,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:50:34,314][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:50:34,315][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:50:34,315][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 16:50:34,315][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 16:50:34,315][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 16:50:34,316][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 16:50:34,317][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:50:34,317][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:50:34,329][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:50:34,329][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:50:34,330][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:50:34,330][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:50:34,330][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:50:34,330][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:50:34,331][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:50:34,331][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:50:34,332][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:50:34,332][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:50:34,332][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:50:34,333][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:50:34,333][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:50:34,339][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:50:34,341][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:50:34,341][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:50:34,341][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:50:34,341][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:50:34,341][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:50:34,342][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:50:34,342][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:50:34,343][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:50:34,344][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:50:34,344][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:50:34,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:34,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:34,345][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:50:34,345][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:50:34,345][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:50:34,351][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:50:34,352][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:50:34,352][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:50:34,750][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:50:34,750][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:50:34,751][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:50:34,751][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:34,751][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:50:34,905][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:34,906][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:34,906][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:50:34,906][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:34,906][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:50:35,121][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,121][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,122][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,122][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,122][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,122][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,122][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,123][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:50:35,123][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,127][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,127][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,127][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,127][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,128][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,128][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,128][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:50:35,128][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:50:35,128][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:50:35,128][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:50:35,129][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:50:35,130][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:50:35,130][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:50:35,130][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:50:35,131][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:50:35,131][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:50:40,757][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 16:50:40,758][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 16:50:40,758][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 16:50:40,758][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 16:50:40,758][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:50:40,758][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:50:40,759][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:50:40,759][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:50:40,759][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:50:40,760][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:50:40,760][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:50:40,762][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:50:40,762][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 16:50:40,762][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:50:40,763][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:50:40,767][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:50:40,767][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:50:40,767][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:50:40,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 16:50:40,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:50:40,767][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:50:40,771][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:50:40,771][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 16:50:40,771][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:50:40,771][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:40,772][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:40,772][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:50:40,772][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:50:40,772][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:50:40,772][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:50:40,772][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:50:44,478][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:50:44,478][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:50:44,478][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:50:44,478][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:44,478][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:50:44,672][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:44,673][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:44,818][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:50:44,818][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:50:44,818][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 16:50:44,819][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:50:44,819][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:50:44,819][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 16:50:44,819][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 16:50:44,819][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:50:46,049][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:50:46,049][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:50:46,049][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:50:46,049][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:46,049][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:50:46,761][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:50:46,762][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:50:46,762][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:50:46,762][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:50:46,762][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:50:46,762][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:50:46,928][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:50:46,928][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:50:46,928][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 16:50:46,928][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 16:50:46,928][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 16:50:46,929][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 16:50:46,929][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 16:50:46,929][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 16:50:46,929][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 16:50:46,930][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 16:50:46,931][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 16:50:46,931][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 16:50:46,931][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 16:50:46,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:50:46,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:57:22,320][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 16:57:22,320][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 16:57:22,321][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 16:57:22,321][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 16:57:22,321][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 16:57:22,321][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 16:57:22,321][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 16:57:22,903][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:57:22,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:57:22,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:57:22,903][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:57:22,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,907][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:57:22,907][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,908][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:22,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:22,908][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 16:57:22,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:22,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:22,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:23,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,104][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,104][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:23,104][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:23,105][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:23,105][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 16:57:23,105][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 16:57:23,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 16:57:23,107][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:23,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:23,338][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 16:57:23,338][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 16:57:23,338][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 16:57:23,338][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 16:57:23,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 16:57:23,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:57:23,339][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 16:57:23,339][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 16:57:23,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 16:57:23,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 16:57:23,340][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 16:57:23,340][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:23,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 16:57:23,347][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:57:23,347][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 16:57:23,347][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 16:57:23,347][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 16:57:23,348][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 16:57:23,348][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 16:57:23,358][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 16:57:23,358][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 16:57:23,359][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:57:23,359][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 16:57:23,359][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 16:57:23,359][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 16:57:23,390][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 16:57:23,390][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 16:57:23,390][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 16:57:23,509][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 16:57:23,510][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 16:57:23,510][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 16:57:23,510][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 16:57:23,511][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 16:57:23,511][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 16:57:30,061][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 16:57:30,062][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:57:30,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:57:30,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:57:30,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:57:30,066][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:57:30,068][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:57:30,068][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:57:30,073][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:57:30,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:57:30,074][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 16:57:30,074][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:57:30,074][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 16:57:30,080][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 16:57:30,081][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 16:57:30,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 16:57:30,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 16:57:30,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 16:57:30,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 16:57:30,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 16:57:30,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:57:30,084][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 16:57:30,084][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 16:57:30,084][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 16:57:30,089][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 16:57:30,089][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 16:57:30,089][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 16:57:30,089][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 16:57:30,089][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 16:57:30,089][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 16:57:30,090][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 16:57:30,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 16:57:30,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 16:57:30,090][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 16:57:30,464][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 16:57:30,464][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 16:57:30,464][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 16:57:30,464][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:57:30,464][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 16:57:30,598][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 16:57:30,791][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 16:57:30,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 16:57:30,792][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,792][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,792][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,794][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 16:57:30,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 16:57:30,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 16:57:30,800][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 16:57:30,800][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 16:57:30,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 16:57:30,801][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 16:57:30,801][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 16:57:30,802][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 16:57:30,802][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 16:57:30,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 16:57:30,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:06:46,635][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 17:06:46,635][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 17:06:46,635][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 17:06:46,635][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 17:06:46,636][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:06:46,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:06:46,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:06:46,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:06:46,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:06:46,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:06:46,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:46,638][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:06:46,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:46,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:06:46,639][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:06:46,645][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:06:46,645][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:06:46,646][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:46,646][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:46,646][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:06:46,646][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:06:46,650][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:06:46,651][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 17:06:46,651][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:06:46,651][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:06:46,651][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:06:46,651][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:06:46,651][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:06:46,859][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 17:06:46,859][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 17:06:46,861][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 17:06:50,896][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 17:06:50,897][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:06:50,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:06:50,897][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:06:50,897][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:06:50,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:06:50,898][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:06:50,898][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:06:50,898][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 17:06:50,898][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 17:06:50,898][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 17:06:50,900][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 17:06:50,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:06:50,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:06:50,912][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 17:06:50,913][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:06:50,914][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:06:50,914][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:06:50,914][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:06:50,914][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:06:50,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:06:50,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:06:50,916][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:50,916][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:50,916][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 17:06:50,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:06:50,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:06:50,927][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:06:50,929][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:06:50,929][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:06:50,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:06:50,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:06:50,929][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:06:50,931][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:06:50,931][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:06:50,933][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:06:50,934][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:06:50,934][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:06:50,934][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:06:50,940][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:06:50,940][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:06:50,940][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:06:50,940][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:06:50,941][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:06:50,941][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:06:50,941][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:06:50,941][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:06:50,941][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:06:54,672][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:06:54,672][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:06:54,672][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:06:54,672][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:06:54,672][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:06:54,814][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:06:54,815][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:06:54,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:06:54,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:06:55,032][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:06:55,032][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:06:55,032][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 17:06:55,032][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,034][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,034][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,035][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 17:06:55,035][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 17:06:55,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:06:55,041][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 17:06:55,041][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 17:06:55,041][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 17:06:55,044][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 17:06:55,044][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:06:55,044][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:06:55,045][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 17:06:55,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:06:55,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:06:58,989][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 17:06:58,990][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 17:06:58,990][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 17:06:58,990][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 17:06:58,990][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:06:58,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:06:58,991][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:06:58,991][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:06:58,991][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:06:58,992][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:06:58,992][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:58,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:58,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:58,993][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:06:58,994][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:06:58,994][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:06:58,998][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:06:58,998][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:06:58,998][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:06:58,998][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:58,999][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:06:58,999][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:06:58,999][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:06:59,003][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:06:59,003][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:06:59,003][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:06:59,003][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:06:59,003][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 17:06:59,003][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 17:06:59,004][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:06:59,004][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:06:59,004][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:06:59,004][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:06:59,004][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:07:06,122][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:07:06,122][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:07:06,122][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:07:06,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:07:06,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:07:06,276][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:07:06,406][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:07:06,406][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:07:06,406][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 17:07:06,407][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:07:06,407][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:07:06,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 17:07:06,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 17:07:06,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:07:07,280][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:07:07,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:07:07,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:07:07,280][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:07:07,280][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:07:07,612][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:07:07,775][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 17:07:07,775][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 17:07:07,775][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 17:07:07,776][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 17:07:07,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:07:07,778][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:07:59,021][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 17:07:59,022][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:07:59,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:07:59,022][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:07:59,022][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:07:59,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:07:59,023][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:07:59,023][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:07:59,023][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 17:07:59,024][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 17:07:59,024][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 17:07:59,025][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 17:07:59,026][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:07:59,027][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:07:59,039][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 17:07:59,040][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:07:59,040][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:07:59,040][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:07:59,040][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:07:59,040][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:07:59,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:07:59,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:07:59,042][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:07:59,042][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 17:07:59,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:07:59,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:07:59,043][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:07:59,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:07:59,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:07:59,043][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 17:07:59,044][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:07:59,044][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:07:59,054][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:07:59,055][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:07:59,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:07:59,056][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:07:59,056][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:07:59,056][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:07:59,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:07:59,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:07:59,070][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:07:59,070][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:07:59,071][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:07:59,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:07:59,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:07:59,071][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:07:59,071][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:07:59,071][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:07:59,078][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:07:59,079][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:07:59,079][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:07:59,079][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:07:59,079][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:07:59,080][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:07:59,080][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:07:59,080][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:07:59,080][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:08:02,825][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:08:02,825][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:08:02,825][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:08:02,825][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:02,825][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:02,998][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:02,999][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:03,192][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:08:03,192][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:08:03,192][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 17:08:03,192][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,194][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 17:08:03,194][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,198][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,198][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,198][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,198][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 17:08:03,198][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:03,199][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 17:08:03,199][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 17:08:03,199][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:03,199][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:03,199][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 17:08:03,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:03,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:04,397][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 17:08:04,398][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:04,398][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:04,399][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:04,399][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:04,399][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:04,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:04,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:04,402][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:04,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:04,403][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 17:08:04,403][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:04,403][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:04,410][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:08:04,411][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:04,411][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:04,411][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:04,412][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:04,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:04,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:04,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:04,415][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:04,415][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:04,416][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:08:04,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:04,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:04,416][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:08:04,416][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:08:04,416][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:08:04,421][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:08:04,421][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:08:04,421][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:08:06,005][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:08:06,005][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:08:06,006][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:08:06,006][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:06,006][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:06,141][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:06,306][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:08:06,306][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:08:06,306][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 17:08:06,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 17:08:06,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,316][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,316][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 17:08:06,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,318][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,318][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,318][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:06,318][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 17:08:06,318][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 17:08:06,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 17:08:06,318][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 17:08:06,319][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:06,319][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:06,319][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 17:08:06,320][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:06,320][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:11,211][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 17:08:11,212][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:11,212][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:11,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:11,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:11,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:11,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:11,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:11,215][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:11,215][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 17:08:11,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:11,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:11,216][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:11,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:11,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:11,216][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 17:08:11,217][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:11,217][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:11,223][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:08:11,224][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:11,224][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:11,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:11,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:11,225][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:11,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:11,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:11,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:11,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:11,229][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:08:11,230][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:08:11,230][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:08:11,234][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:08:11,234][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:08:11,234][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:08:11,234][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:08:11,234][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:08:11,235][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:08:11,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:08:11,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:08:11,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:08:14,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:08:14,914][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:08:14,914][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:08:14,914][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:14,914][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:15,075][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:08:15,075][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:08:15,075][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:08:15,075][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:08:15,075][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:08:15,076][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:08:15,252][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,253][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,253][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,253][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,253][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 17:08:15,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,259][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,259][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,260][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,260][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,260][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,260][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,260][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,260][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,261][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:08:15,261][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 17:08:15,261][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 17:08:15,261][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:08:15,261][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:08:15,261][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 17:08:15,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:15,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:25,437][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 17:08:25,438][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:25,438][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:25,439][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:25,439][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:25,439][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:25,440][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:25,440][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:25,441][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:25,441][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 17:08:25,441][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:25,442][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:25,442][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 17:08:25,442][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:25,442][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:25,442][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 17:08:25,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:08:25,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:08:25,452][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:08:25,452][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:08:25,453][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:08:25,453][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:08:25,453][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:08:25,453][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:08:25,453][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:08:25,454][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:25,455][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:08:25,455][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:08:25,455][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:08:25,459][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:08:25,459][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:08:25,459][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/csrf_token/ (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 17:08:29,115][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 17:13:42,357][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 17:13:42,358][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:13:42,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:13:42,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:13:42,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:13:42,360][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:13:42,361][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:13:42,361][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:13:42,362][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 17:13:42,362][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:42,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 17:13:42,363][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:13:42,363][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:13:42,367][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:13:42,368][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:13:42,368][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:13:43,190][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:13:43,190][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:13:43,190][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:13:43,190][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:43,190][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:43,616][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:13:43,617][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:43,617][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:13:44,052][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,052][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,052][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,052][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 17:13:44,052][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,053][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 17:13:44,053][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,057][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,057][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,058][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,058][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,058][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,058][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,058][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,059][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,059][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 17:13:44,059][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 17:13:44,059][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 17:13:44,059][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 17:13:44,060][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 17:13:44,060][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 17:13:44,060][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 17:13:44,060][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 17:13:44,061][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:13:44,061][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 17:13:49,668][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 17:13:49,669][INFO][superset_tools_app] Incoming request: GET /api/settings/environments/ss1/databases -[2026-02-11 17:13:49,669][INFO][superset_tools_app] Incoming request: GET /api/settings/environments/ss2/databases -[2026-02-11 17:13:49,670][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/settings/environments/ss1/databases -[2026-02-11 17:13:49,670][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/settings/environments/ss1/databases -[2026-02-11 17:13:49,670][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/settings/environments/ss1/databases -[2026-02-11 17:13:49,670][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/settings/environments/ss2/databases -[2026-02-11 17:13:49,670][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/settings/environments/ss2/databases -[2026-02-11 17:13:49,670][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/settings/environments/ss2/databases -[2026-02-11 17:13:49,670][INFO][superset_tools_app] Response status: 404 for /api/settings/environments/ss1/databases -[2026-02-11 17:13:49,671][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 17:13:49,671][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 17:13:49,671][INFO][superset_tools_app] Response status: 404 for /api/settings/environments/ss2/databases -[2026-02-11 17:13:49,671][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 17:13:49,672][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 17:13:49,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 17:13:49,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 17:13:49,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 17:13:49,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 17:13:49,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 17:13:49,674][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:13:49,675][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:13:49,676][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:13:49,676][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:13:49,676][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:13:49,680][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 17:13:49,680][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:13:49,680][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 17:13:49,680][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:13:49,680][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 17:13:49,681][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 17:13:49,681][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 17:13:49,685][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 17:13:49,686][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 17:13:49,686][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:13:49,686][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:13:49,686][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 17:13:49,686][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 17:13:49,686][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:13:51,839][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:13:51,840][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:13:51,840][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:13:51,840][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:51,840][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:52,074][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:52,075][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:52,076][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:13:52,076][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:52,076][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:52,194][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:13:52,195][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 17:13:52,195][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 17:13:52,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 17:13:52,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 17:13:52,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 17:13:52,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 17:13:53,042][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 17:13:53,042][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 17:13:53,042][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 17:13:53,042][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:53,042][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 17:13:53,389][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 17:13:53,572][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 17:13:53,572][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 17:13:53,572][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 17:13:53,572][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 17:13:53,572][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 17:13:53,573][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 17:13:53,573][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 17:13:53,573][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 17:13:53,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 17:13:53,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:17:50,427][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 18:17:50,428][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:17:50,428][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:17:50,428][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:17:50,428][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:17:50,428][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:17:50,429][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:17:50,429][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 18:17:50,432][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 18:17:50,433][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 18:17:50,433][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:17:50,433][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:17:50,458][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:17:50,459][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:17:50,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:17:50,459][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:17:50,459][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:17:50,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:17:50,460][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:17:50,460][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:17:50,460][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:17:50,460][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:17:50,460][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:17:50,465][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:17:50,467][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:17:50,467][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:17:58,039][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-11 18:17:58,039][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-11 18:17:58,039][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-11 18:17:58,039][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-11 18:17:58,040][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-11 18:17:58,040][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-11 18:17:58,040][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-11 18:18:01,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 18:18:01,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:18:01,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:18:01,050][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-11 18:18:01,055][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,056][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 18:18:01,057][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,058][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,059][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,060][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-11 18:18:01,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,235][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,235][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,235][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-11 18:18:01,236][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-11 18:18:01,237][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,237][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,461][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,462][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,462][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-11 18:18:01,463][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-11 18:18:01,463][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-11 18:18:01,463][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-11 18:18:01,464][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-11 18:18:01,464][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:18:01,464][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-11 18:18:01,464][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-11 18:18:01,465][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-11 18:18:01,465][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-11 18:18:01,476][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:18:01,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:18:01,477][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 18:18:01,477][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-11 18:18:01,477][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-11 18:18:01,489][INFO][superset_tools_app] TaskManager initialized -[2026-02-11 18:18:01,489][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-11 18:18:01,490][INFO][superset_tools_app] SchedulerService initialized -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 18:18:01,490][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-11 18:18:01,490][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-11 18:18:01,490][INFO][superset_tools_app] ResourceService initialized -[2026-02-11 18:18:01,520][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-11 18:18:01,520][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-11 18:18:01,520][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-11 18:18:01,628][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-11 18:18:01,628][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-11 18:18:01,628][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-11 18:18:01,628][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-11 18:18:01,628][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-11 18:18:01,628][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-11 18:18:01,629][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-11 18:18:01,629][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-11 18:19:29,060][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:19:29,062][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:29,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:29,067][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:29,067][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:29,068][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:29,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:29,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:29,072][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:19:29,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:19:29,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:19:29,081][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:19:29,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:19:29,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:19:29,113][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:19:29,114][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:29,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:29,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:29,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:29,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:29,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:29,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:19:29,119][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:29,119][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:29,120][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:19:29,121][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:19:29,121][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:19:29,133][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:19:29,136][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:29,137][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:29,137][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:29,138][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:29,138][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:29,139][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:29,139][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:29,142][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:19:29,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:19:29,143][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:19:29,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:19:29,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:19:29,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:19:29,144][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:19:29,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:19:29,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:19:29,154][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:19:29,155][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:19:29,155][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:19:29,155][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:19:29,155][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:19:29,156][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:19:29,156][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:19:29,156][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:19:29,156][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:19:29,156][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:19:59,299][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,300][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,301][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,301][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,301][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Read timed out. (read timeout=30) | Context: {} -[2026-02-11 18:19:59,302][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:19:59,302][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 18:19:59,302][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:59,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:59,302][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:59,302][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:59,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:59,303][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:59,303][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:59,303][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:19:59,303][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:19:59,303][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:19:59,306][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:19:59,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:19:59,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:19:59,322][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:19:59,322][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:59,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:59,323][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:59,323][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:59,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:59,323][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:59,323][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:19:59,324][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:59,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:59,324][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:19:59,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:19:59,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:19:59,334][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:19:59,335][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:19:59,335][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:19:59,335][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:19:59,335][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:19:59,335][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:19:59,336][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:19:59,336][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:19:59,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:19:59,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:19:59,341][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:19:59,341][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:19:59,346][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:19:59,346][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:19:59,346][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:19:59,346][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:19:59,346][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:19:59,346][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:19:59,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:19:59,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:20:03,534][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:20:03,534][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:20:03,534][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:20:03,534][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:20:03,534][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:20:04,202][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:20:04,203][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:20:04,698][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,698][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,699][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,699][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,699][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,699][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,700][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:20:04,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:20:04,711][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:20:04,711][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:20:04,711][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:20:04,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:20:04,711][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:20:04,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:20:04,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:21:31,548][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:21:31,549][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:21:31,549][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:21:31,549][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:21:31,550][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:21:31,550][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:21:31,551][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:21:31,551][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:21:31,551][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:21:31,551][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:21:31,552][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:21:31,553][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:21:31,554][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:21:31,555][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:21:31,555][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:21:31,555][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:21:31,555][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:21:31,556][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:21:31,556][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:21:31,556][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:21:31,557][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:21:31,557][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:21:31,558][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:21:31,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:21:31,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:21:31,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:21:31,559][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:21:31,560][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:21:31,560][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:21:31,560][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:21:31,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:21:31,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:31,561][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:31,565][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:21:31,565][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:31,565][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:31,565][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:21:31,565][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:21:31,565][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:21:31,565][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:21:31,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:21:31,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:31,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:21:31,570][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:21:31,570][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:21:31,957][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:21:31,957][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:21:31,957][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:21:31,957][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:31,957][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:32,138][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:21:32,138][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:32,139][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:32,260][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:21:32,260][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:21:32,260][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:21:32,260][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:21:32,260][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:21:32,261][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:21:32,261][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:21:32,261][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:21:32,261][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:21:32,261][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:21:33,339][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:21:33,339][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:21:33,339][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:21:33,339][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:33,339][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:33,757][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:33,758][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:33,927][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:21:33,928][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 18:21:33,928][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 18:21:33,929][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:33,930][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:21:33,931][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:21:33,931][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:33,931][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:33,935][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:21:33,935][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:21:33,935][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:21:34,309][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:21:34,309][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:21:34,309][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:21:34,309][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:34,309][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:34,437][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:34,561][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:21:34,562][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:21:34,562][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:21:34,562][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:21:34,562][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:21:34,562][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:21:34,562][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:21:34,563][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 18:21:34,564][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:21:34,564][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:21:34,564][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:34,564][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:34,564][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:21:34,565][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:21:34,565][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:34,565][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:21:34,572][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:21:34,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:21:34,979][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:21:34,979][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:21:34,979][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:21:34,980][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:34,980][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:21:35,099][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:21:35,238][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:21:35,238][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:21:35,239][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-11 18:21:35,240][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-11 18:21:35,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:21:35,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:21:35,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:21:35,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:21:35,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:21:35,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:21:49,619][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate -[2026-02-11 18:21:49,620][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:21:49,621][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] -[2026-02-11 18:21:49,622][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] -[2026-02-11 18:21:49,623][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] -[2026-02-11 18:21:49,623][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] -[2026-02-11 18:21:49,623][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:21:49,623][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:21:49,623][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,628][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:21:49,629][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 0b288334-cbfe-49a6-969f-19c2f51a9445 created and scheduled for execution -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] -[2026-02-11 18:21:49,629][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: id='0b288334-cbfe-49a6-969f-19c2f51a9445' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [1], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None for 1 dashboards -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:21:49,629][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:21:49,630][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:21:49,630][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:21:49,630][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:21:49,630][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 0b288334-cbfe-49a6-969f-19c2f51a9445 for plugin 'Superset Dashboard Migration' -[2026-02-11 18:21:49,630][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:21:49,633][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:21:49,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:21:49,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:21:49,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:49,635][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:49,639][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:21:49,639][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:49,639][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:49,639][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:21:49,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:21:49,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:49,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:49,639][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:21:49,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:21:49,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:21:49,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:21:49,640][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:21:49,640][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:21:49,640][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:21:49,644][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:21:49,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:21:51,492][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:51,497][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:21:51,498][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:21:53,086][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,087][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,088][CRITICAL][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin][Failure] Fatal error during migration: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -Traceback (most recent call last): - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 464, in _make_request - self._validate_conn(conn) - ~~~~~~~~~~~~~~~~~~~^^^^^^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 1093, in _validate_conn - conn.connect() - ~~~~~~~~~~~~^^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connection.py", line 796, in connect - sock_and_verified = _ssl_wrap_socket_and_match_hostname( - sock=sock, - ...<14 lines>... - assert_fingerprint=self.assert_fingerprint, - ) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connection.py", line 975, in _ssl_wrap_socket_and_match_hostname - ssl_sock = ssl_wrap_socket( - sock=sock, - ...<8 lines>... - tls_in_tls=tls_in_tls, - ) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/util/ssl_.py", line 483, in ssl_wrap_socket - ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/util/ssl_.py", line 527, in _ssl_wrap_socket_impl - return ssl_context.wrap_socket(sock, server_hostname=server_hostname) - ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.13/ssl.py", line 455, in wrap_socket - return self.sslsocket_class._create( - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - sock=sock, - ^^^^^^^^^^ - ...<5 lines>... - session=session - ^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/lib/python3.13/ssl.py", line 1076, in _create - self.do_handshake() - ~~~~~~~~~~~~~~~~~^^ - File "/usr/lib/python3.13/ssl.py", line 1372, in do_handshake - self._sslobj.do_handshake() - ~~~~~~~~~~~~~~~~~~~~~~~~~^^ -ssl.SSLError: [SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033) - -During handling of the above exception, another exception occurred: - -Traceback (most recent call last): - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 787, in urlopen - response = self._make_request( - conn, - ...<10 lines>... - **response_kw, - ) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 488, in _make_request - raise new_e -urllib3.exceptions.SSLError: [SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033) - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/requests/adapters.py", line 644, in send - resp = conn.urlopen( - method=request.method, - ...<9 lines>... - chunked=chunked, - ) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 871, in urlopen - return self.urlopen( - ~~~~~~~~~~~~^ - method, - ^^^^^^^ - ...<13 lines>... - **response_kw, - ^^^^^^^^^^^^^^ - ) - ^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 871, in urlopen - return self.urlopen( - ~~~~~~~~~~~~^ - method, - ^^^^^^^ - ...<13 lines>... - **response_kw, - ^^^^^^^^^^^^^^ - ) - ^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 871, in urlopen - return self.urlopen( - ~~~~~~~~~~~~^ - method, - ^^^^^^^ - ...<13 lines>... - **response_kw, - ^^^^^^^^^^^^^^ - ) - ^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/connectionpool.py", line 841, in urlopen - retries = retries.increment( - method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] - ) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/urllib3/util/retry.py", line 519, in increment - raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) - -During handling of the above exception, another exception occurred: - -Traceback (most recent call last): - File "/home/busya/dev/ss-tools/backend/src/core/utils/network.py", line 175, in authenticate - response = self.session.post(login_url, json=self.auth, timeout=self.request_settings["timeout"]) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/requests/sessions.py", line 637, in post - return self.request("POST", url, data=data, json=json, **kwargs) - ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/requests/sessions.py", line 589, in request - resp = self.send(prep, **send_kwargs) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/requests/sessions.py", line 703, in send - r = adapter.send(request, **kwargs) - File "/home/busya/dev/ss-tools/backend/.venv/lib/python3.13/site-packages/requests/adapters.py", line 675, in send - raise SSLError(e, request=request) -requests.exceptions.SSLError: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "/home/busya/dev/ss-tools/backend/src/plugins/migration.py", line 204, in execute - _, all_dashboards = from_c.get_dashboards() - ~~~~~~~~~~~~~~~~~~~~~^^ - File "/home/busya/dev/ss-tools/backend/src/core/superset_client.py", line 90, in get_dashboards - total_count = self._fetch_total_object_count(endpoint="/dashboard/") - File "/home/busya/dev/ss-tools/backend/src/core/superset_client.py", line 514, in _fetch_total_object_count - return self.network.fetch_paginated_count( - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - endpoint=endpoint, - ^^^^^^^^^^^^^^^^^^ - query_params={"page": 0, "page_size": 1}, - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - count_field="count", - ^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/home/busya/dev/ss-tools/backend/src/core/utils/network.py", line 350, in fetch_paginated_count - response_json = cast(Dict[str, Any], self.request("GET", endpoint, params={"q": json.dumps(query_params)})) - ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/busya/dev/ss-tools/backend/src/core/utils/network.py", line 230, in request - _headers = self.headers.copy() - ^^^^^^^^^^^^ - File "/home/busya/dev/ss-tools/backend/src/core/utils/network.py", line 208, in headers - self.authenticate() - ~~~~~~~~~~~~~~~~~^^ - File "/home/busya/dev/ss-tools/backend/src/core/utils/network.py", line 197, in authenticate - raise NetworkError(f"Network or parsing error during authentication: {e}") from e -src.core.utils.network.NetworkError: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,095][ERROR][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 0b288334-cbfe-49a6-969f-19c2f51a9445 failed: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:21:53,095][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:53,095][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:21:53,096][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:21:53,096][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:53,097][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:21:53,097][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:21:53,097][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=0b288334-cbfe-49a6-969f-19c2f51a9445 -[2026-02-11 18:21:53,099][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:21:53,099][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:21:53,099][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 0b288334-cbfe-49a6-969f-19c2f51a9445 execution finished with status: TaskStatus.FAILED -[2026-02-11 18:21:53,099][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] -[2026-02-11 18:21:53,099][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] -[2026-02-11 18:21:53,099][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate -[2026-02-11 18:21:53,100][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:21:53,100][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:26:08,578][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:26:08,579][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:26:08,579][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:26:08,580][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:26:08,580][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:26:08,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:26:08,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:26:08,580][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:26:08,581][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:26:08,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:26:08,581][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:26:08,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:26:08,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:26:08,592][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:26:08,594][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:26:08,595][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:26:08,596][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:26:08,596][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:26:08,596][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:26:08,597][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:26:08,597][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:26:08,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:26:08,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:26:08,599][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:26:08,599][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:26:08,604][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:26:08,604][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:26:08,604][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:26:08,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:26:08,604][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:26:08,604][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:26:08,604][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:26:08,604][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:26:08,604][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:26:08,605][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:26:08,605][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:26:08,605][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:26:08,605][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,036][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:26:10,037][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 18:29:09,403][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:29:09,406][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:09,406][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:09,407][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:09,407][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:09,407][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:09,408][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:09,408][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:09,409][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:09,410][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:09,410][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:09,410][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:09,415][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:09,415][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:09,415][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:29:09,415][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:09,415][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:09,416][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:09,416][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:09,416][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:09,416][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:13,106][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:29:13,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:29:13,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:29:13,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:13,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:13,285][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:13,603][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:29:13,603][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:29:13,603][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:29:13,603][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:29:13,603][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,604][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,604][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,604][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,604][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,604][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,605][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:29:13,605][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,608][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:13,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:29:13,609][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:29:13,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:29:13,610][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:29:13,610][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:29:13,610][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:29:13,610][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:29:13,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:29:13,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:29:18,098][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:29:18,098][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:29:18,099][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:29:18,102][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:29:18,102][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:29:18,103][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:29:18,103][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:18,103][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:18,103][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:18,103][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:18,104][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:18,105][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:18,105][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:18,105][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:18,106][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:18,106][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:18,106][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:18,106][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:18,106][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:18,108][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:29:18,108][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:29:18,108][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:18,108][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:18,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:18,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:18,109][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:18,114][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:18,114][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:18,114][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,574][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:21,575][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:21,575][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:21,575][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:29:21,576][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:21,576][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:21,582][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:21,582][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:21,582][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:21,582][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:29:21,582][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:29:21,582][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:29:21,582][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:21,583][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:21,583][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:21,583][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:21,587][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:21,587][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:25,291][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:29:25,292][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:29:25,292][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:29:25,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:25,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:25,402][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_handle_network_error][Entry] -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][ERROR][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] Failed to get database mappings: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,836][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:28,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:28,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:28,837][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:28,843][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:28,843][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:28,843][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:28,843][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:28,844][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:28,844][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:28,844][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:28,844][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:28,844][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:29:28,844][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:28,844][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:32,307][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:32,307][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:32,307][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:32,307][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,307][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,308][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,308][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,308][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,308][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,308][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 500: Failed to fetch databases: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,309][DEBUG][superset_tools_app] [get_auth_db][Coherence:Failed] 503: Failed to get database mappings: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/database/'} -[2026-02-11 18:29:32,309][DEBUG][superset_tools_app] [get_auth_db][Coherence:Failed] 500: Failed to fetch databases: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:32,310][INFO][superset_tools_app] Response status: 500 for /api/environments/ss1/databases -[2026-02-11 18:29:32,310][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:29:32,311][INFO][superset_tools_app] Response status: 503 for /api/dashboards/db-mappings -[2026-02-11 18:29:32,311][INFO][superset_tools_app] Response status: 500 for /api/environments/ss2/databases -[2026-02-11 18:29:32,311][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:32,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:32,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:29:32,312][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:29:32,313][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:29:32,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:29:32,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:29:32,328][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:29:32,328][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:32,328][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:32,328][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:32,329][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:32,329][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:32,329][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:32,329][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:29:32,330][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:32,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:32,330][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:29:32,331][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:29:32,331][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:29:32,337][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:29:32,338][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:32,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:32,339][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:32,339][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:32,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:32,340][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:32,340][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:32,341][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:29:32,341][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:29:32,341][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:32,342][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:32,342][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:32,342][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:32,346][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:32,346][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:32,346][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:32,346][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:29:32,346][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:29:32,346][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:29:32,346][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:32,346][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:32,346][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:32,347][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:32,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:32,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:32,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:35,759][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:35,759][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:35,759][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:35,759][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,759][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:35,760][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 18:29:36,909][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:29:36,917][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:36,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:36,917][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:36,918][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:36,918][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:36,918][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:36,918][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:36,919][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:29:36,919][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:36,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:36,920][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:29:36,920][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:36,920][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:36,924][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:36,925][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:36,925][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:40,610][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:29:40,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:29:40,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:29:40,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:40,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:40,769][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:41,020][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:29:41,020][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:29:41,020][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:29:41,020][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:29:41,020][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:29:41,020][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,021][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,021][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:29:41,021][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,022][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,022][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,022][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:29:41,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,028][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,028][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,029][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:29:41,029][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:29:41,030][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:29:41,030][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:29:41,030][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:29:41,030][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:29:41,030][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:29:41,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:29:41,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:29:44,578][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:29:44,578][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:29:44,578][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:29:44,579][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:29:44,579][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:29:44,579][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:29:44,579][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:44,580][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:44,580][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:29:44,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:44,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:44,581][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:44,581][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:29:44,581][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:29:44,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:29:44,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:44,584][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:29:44,585][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:29:44,586][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:29:44,586][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:44,587][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:44,587][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:44,587][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:44,591][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:44,591][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:44,592][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:44,592][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:44,592][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:44,592][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:44,592][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:44,592][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,014][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:48,015][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:29:48,015][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:48,015][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:48,019][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:48,019][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:48,019][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:48,019][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:48,019][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:29:48,019][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:48,020][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:51,500][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:51,501][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:51,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:51,502][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:51,502][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:51,508][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:29:51,508][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:51,509][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:51,509][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:29:51,509][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:29:51,509][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:29:51,513][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:29:51,513][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:51,513][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:51,513][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:51,514][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:51,514][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:29:51,514][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:51,514][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:55,198][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:29:55,198][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:29:55,198][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:29:55,198][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:55,198][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:29:55,313][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:55,314][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:29:55,444][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:29:55,444][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:29:55,445][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:29:55,445][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:29:55,445][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:29:55,445][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:29:55,445][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:29:55,815][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:29:55,816][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:29:55,816][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:29:55,816][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:55,816][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:55,930][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:29:55,931][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:29:56,057][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:29:56,057][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:29:56,057][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 18:29:56,058][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 18:29:56,058][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 18:29:56,058][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 500: Failed to fetch databases: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:56,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 500: Failed to fetch databases: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset2.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 18:29:56,059][INFO][superset_tools_app] Response status: 500 for /api/environments/ss1/databases -[2026-02-11 18:29:56,059][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:29:56,060][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:29:56,060][INFO][superset_tools_app] Response status: 500 for /api/environments/ss2/databases -[2026-02-11 18:46:50,401][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:46:50,401][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:46:50,401][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:46:50,402][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:50,402][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:50,402][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:50,402][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:50,402][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:50,403][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:46:50,403][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:46:50,403][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:46:50,403][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:46:50,404][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:50,404][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:46:50,415][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:46:50,416][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:46:50,416][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:46:50,416][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:50,417][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:50,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:50,417][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:50,417][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:50,418][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:46:50,418][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:46:50,418][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:50,418][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:50,418][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:46:50,419][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:50,419][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:50,419][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:46:50,419][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:50,419][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:46:50,425][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:46:50,426][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:46:50,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:46:50,427][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:50,427][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:50,427][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:50,428][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:50,428][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:46:50,429][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:46:50,429][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:46:50,429][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:46:50,430][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:46:50,433][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:46:50,434][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:46:50,434][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:46:51,167][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:46:51,168][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:46:51,168][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:46:51,168][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:51,168][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:51,563][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:51,794][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:46:51,795][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,795][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,795][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:46:51,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:46:51,800][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,801][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,801][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,801][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,801][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,801][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,802][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,802][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,802][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:46:51,802][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:46:51,802][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:46:51,802][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:46:51,803][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:46:51,803][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:46:51,803][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:46:51,804][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:46:51,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:51,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:46:55,497][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:46:55,498][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:46:55,498][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:46:55,498][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:46:55,498][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 18:46:55,499][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-11 18:46:55,500][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:55,500][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:55,500][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:46:55,500][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:55,500][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:55,501][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:46:55,501][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:55,501][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:55,501][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:46:55,502][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:55,502][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:46:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:46:55,504][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:46:55,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:46:55,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:46:55,505][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:46:55,509][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:46:55,510][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:46:55,510][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:46:55,510][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:46:55,510][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:46:55,510][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:46:55,510][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:46:56,145][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:46:56,146][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:46:56,146][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:46:56,146][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:56,146][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:56,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:56,420][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:46:56,421][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:46:56,421][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:46:56,421][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:46:56,421][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:46:56,421][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:46:56,421][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:46:56,422][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:46:56,423][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:46:56,423][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:56,423][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:56,423][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:46:56,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:46:56,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:46:56,424][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:46:56,430][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:46:56,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:46:56,430][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:46:56,834][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:46:56,834][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:46:56,834][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:46:56,835][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:56,835][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:57,003][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:57,133][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:46:57,134][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:46:57,134][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:46:57,134][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:46:57,134][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:46:57,134][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:46:57,134][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:46:57,135][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-11 18:46:57,135][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:46:57,135][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:46:57,135][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:46:57,135][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:46:57,136][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:46:57,136][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:46:57,136][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:46:57,140][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:46:57,140][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:46:57,140][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:46:57,140][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:46:57,140][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:46:57,140][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:46:57,141][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:46:57,144][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:46:57,144][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:46:57,144][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:46:57,145][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:46:57,145][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:46:57,146][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:46:57,146][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:57,146][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:57,147][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:46:57,147][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:46:57,147][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:46:57,147][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:46:57,147][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:46:57,509][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:46:57,509][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:46:57,509][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:46:57,509][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:57,509][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:57,617][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:57,618][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:46:57,732][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:46:57,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:46:57,732][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:46:57,733][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:46:57,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:46:57,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:46:57,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:46:58,113][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:46:58,113][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:46:58,113][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:46:58,113][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:58,113][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:58,237][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:46:58,237][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:46:58,237][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:46:58,237][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:46:58,238][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:46:58,359][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 18:46:58,359][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 18:46:58,361][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 18:46:58,362][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 18:46:58,362][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 18:46:58,362][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-11 18:46:58,362][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 18:46:58,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:58,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:46:58,364][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:58,364][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:46:58,364][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:46:58,364][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:47:07,217][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate -[2026-02-11 18:47:07,218][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:47:07,218][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:47:07,218][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:47:07,218][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:47:07,218][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:47:07,219][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:47:07,219][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:47:07,220][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:47:07,225][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task d740e4dd-b828-47b4-b2b6-02f5f51a9e44 created and scheduled for execution -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] -[2026-02-11 18:47:07,225][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: id='d740e4dd-b828-47b4-b2b6-02f5f51a9e44' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [9], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None for 1 dashboards -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] -[2026-02-11 18:47:07,225][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:47:07,226][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task d740e4dd-b828-47b4-b2b6-02f5f51a9e44 for plugin 'Superset Dashboard Migration' -[2026-02-11 18:47:07,226][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,228][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:47:07,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:47:07,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:47:07,229][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:47:07,233][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:47:07,234][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:47:07,234][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:47:07,234][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:47:07,234][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:47:07,234][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:47:07,238][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:47:07,238][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:47:07,583][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,586][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:47:07,586][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:47:07,601][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:47:07,601][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:47:07,601][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:47:07,601][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:47:07,601][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:47:07,731][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:47:07,731][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:47:07,731][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:47:07,731][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:47:07,732][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:47:07,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:47:07,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:47:07,905][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:47:07,905][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:47:07,905][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:47:07,906][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,906][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,906][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,907][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task d740e4dd-b828-47b4-b2b6-02f5f51a9e44 completed successfully -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:47:07,907][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,909][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:47:07,909][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:47:07,909][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d740e4dd-b828-47b4-b2b6-02f5f51a9e44 -[2026-02-11 18:47:07,910][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:47:07,910][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:47:07,911][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task d740e4dd-b828-47b4-b2b6-02f5f51a9e44 execution finished with status: TaskStatus.SUCCESS -[2026-02-11 18:47:07,911][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] -[2026-02-11 18:47:07,911][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] -[2026-02-11 18:47:07,911][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate -[2026-02-11 18:47:07,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:47:07,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:48:09,674][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:48:09,675][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:09,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:48:09,676][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:09,676][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:09,676][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:48:09,677][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:09,677][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:48:09,678][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:09,678][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:09,678][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:48:09,678][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:48:09,678][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:48:09,688][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:48:09,688][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:09,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:48:09,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:09,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:09,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:09,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:09,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:09,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:09,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:48:09,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:09,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:09,692][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:48:09,692][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:48:09,692][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:48:09,697][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:48:09,697][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:48:09,697][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:48:09,697][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:48:09,697][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:48:09,698][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:48:09,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:48:09,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:48:09,698][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:48:09,698][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:48:09,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:48:09,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:48:09,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:48:51,509][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:48:51,509][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:48:51,509][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:48:51,509][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:48:51,509][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:48:51,644][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:48:51,644][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:48:51,644][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:48:51,644][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:48:51,644][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:48:51,645][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:48:51,823][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:48:51,823][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:48:51,824][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,824][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,824][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,824][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,824][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,824][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,825][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:48:51,825][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:48:51,829][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,829][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,830][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:48:51,830][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,831][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:48:51,831][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:48:51,831][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:48:51,831][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:48:51,831][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:48:51,831][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:48:51,833][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 18:48:51,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:48:51,834][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:51,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:48:51,835][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-11 18:48:51,835][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:51,835][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:51,835][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:51,835][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:51,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:51,836][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 18:48:51,836][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 18:48:51,836][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 18:48:51,836][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 18:48:51,837][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:48:51,837][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:48:51,854][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 18:48:51,855][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:51,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:48:51,856][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:51,856][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:51,856][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:51,857][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:51,858][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:48:51,859][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:51,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:51,859][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 18:48:51,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:48:51,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:48:51,867][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:48:51,869][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:51,869][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:48:51,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:51,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:51,870][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:51,871][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:51,871][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:51,872][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:51,872][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:48:51,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:51,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:51,873][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:48:51,873][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:48:51,873][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:48:51,877][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:48:51,877][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:48:51,877][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:48:51,877][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:48:51,877][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:48:51,878][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:48:51,878][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:48:51,878][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:48:51,878][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:48:51,878][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,052][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-11 18:48:52,053][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-11 18:48:56,315][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 18:48:56,316][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:48:56,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:48:56,316][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:48:56,317][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:48:56,317][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:48:56,319][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:48:56,319][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:48:56,320][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:56,321][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:56,321][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 18:48:56,322][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:48:56,322][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:48:56,328][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:48:56,329][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:48:56,329][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:49:00,017][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:49:00,017][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:49:00,017][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:49:00,018][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:49:00,018][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:49:00,186][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:49:00,365][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-11 18:49:00,365][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,366][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,366][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,366][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,366][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,366][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,367][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-11 18:49:00,367][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-11 18:49:00,372][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,372][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,372][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,372][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,372][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,373][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,373][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,373][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,374][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,374][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,374][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,374][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-11 18:49:00,374][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-11 18:49:00,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-11 18:49:00,375][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-11 18:49:00,375][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:49:00,375][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:49:00,375][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-11 18:49:00,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:49:00,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:49:03,878][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:49:03,879][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:49:03,879][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:49:03,880][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:49:03,880][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:49:03,880][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:49:03,881][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:49:03,881][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:49:03,881][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:49:03,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:49:03,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:49:03,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:49:03,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:49:03,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:49:03,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:49:03,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:49:03,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:49:03,884][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:49:03,884][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:49:03,884][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:49:03,884][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:49:03,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:49:03,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:49:03,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:49:03,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:49:03,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:49:03,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:49:03,889][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:49:03,889][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:49:03,890][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:49:03,890][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:49:03,890][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:49:03,895][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:49:03,895][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:49:03,895][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:49:03,895][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:49:03,896][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:49:03,896][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:49:03,896][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:49:04,295][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:49:04,295][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:49:04,295][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:49:04,296][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:49:04,296][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:49:04,422][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:49:04,422][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:49:04,422][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:49:04,423][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:34,620][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:34,620][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:34,620][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:34,621][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:34,621][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:34,621][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:34,621][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:34,622][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:34,622][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:34,622][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:34,626][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:50:34,626][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:34,626][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:34,626][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:34,626][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:34,626][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:34,630][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:34,630][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:35,010][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:35,011][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:35,011][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:35,011][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:35,011][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:35,125][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:35,125][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:35,125][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:35,126][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:35,262][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:35,262][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:35,262][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:35,262][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:35,262][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:35,263][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:35,263][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:35,263][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:50:35,263][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:35,263][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:35,655][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:35,656][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:35,656][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:35,656][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:35,656][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:35,768][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:35,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:35,769][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:35,769][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:35,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:35,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:35,882][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 18:50:35,882][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 18:50:35,884][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:35,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:35,886][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:35,886][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:35,886][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:35,891][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:35,891][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:35,891][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:36,259][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:36,259][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:36,259][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:36,259][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:36,259][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:36,372][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:36,373][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:36,373][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:36,486][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:36,486][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:36,487][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-11 18:50:36,488][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 18:50:36,488][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-11 18:50:36,488][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate -[2026-02-11 18:50:36,488][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-11 18:50:36,488][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-11 18:50:36,490][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:36,490][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:50:36,493][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:36,493][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:50:36,494][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:36,494][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:50:36,494][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-11 18:50:36,494][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-11 18:50:36,494][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-11 18:50:36,495][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-11 18:50:36,495][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:50:36,495][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-11 18:50:36,496][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 18:50:36,496][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-11 18:50:36,496][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-11 18:50:36,496][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:50:36,496][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:50:36,497][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:50:36,498][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 18:50:36,498][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:50:36,498][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:50:36,498][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:50:36,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:50:36,501][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 18:50:36,501][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-11 18:50:36,501][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 18:50:36,501][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:36,502][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:36,502][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:36,502][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:36,506][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-11 18:50:36,506][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:36,506][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:36,506][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:36,506][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:36,507][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:36,507][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:50:36,507][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:36,507][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:36,889][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:36,889][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:36,889][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:36,889][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:36,889][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:37,001][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:37,114][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:37,114][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:37,116][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-11 18:50:37,116][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-11 18:50:37,116][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:37,117][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:37,117][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:37,117][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:37,121][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:50:37,121][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:37,121][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:37,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-11 18:50:37,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:37,121][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:37,125][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:37,125][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:37,529][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:37,529][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:37,529][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:37,529][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:37,529][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:37,659][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:37,660][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:37,796][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:37,796][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:37,796][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:37,797][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:37,797][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:37,797][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:37,797][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:37,797][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:37,797][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:50:37,797][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:37,797][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:38,171][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:38,172][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:38,172][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:38,172][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:38,172][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:38,286][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:38,404][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-11 18:50:38,404][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-11 18:50:38,405][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-11 18:50:38,406][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-11 18:50:38,406][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:38,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-11 18:50:38,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:38,407][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:38,411][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:38,411][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:38,799][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:38,799][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:38,799][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:38,799][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:38,799][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:38,914][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:38,914][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:38,914][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:38,914][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:38,915][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:39,029][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-11 18:50:39,029][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-11 18:50:39,033][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-11 18:50:39,035][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-11 18:50:39,036][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:39,036][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:50:39,037][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,039][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:50:39,039][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:50:39,039][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task a376b084-f3bc-4d54-8eb7-f8d5321281e8 created and scheduled for execution -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] -[2026-02-11 18:50:39,040][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None for 1 dashboards -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:50:39,040][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task a376b084-f3bc-4d54-8eb7-f8d5321281e8 for plugin 'Superset Dashboard Migration' -[2026-02-11 18:50:39,040][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,042][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:50:39,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:50:39,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:39,043][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:39,048][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 18:50:39,048][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:39,048][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:50:39,048][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-11 18:50:39,048][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 18:50:39,048][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 18:50:39,053][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 18:50:39,053][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 18:50:39,448][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-11 18:50:39,448][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-11 18:50:39,448][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-11 18:50:39,448][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:39,448][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-11 18:50:39,580][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-11 18:50:39,598][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,601][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:50:39,601][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:50:39,751][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-11 18:50:39,751][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-11 18:50:39,752][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-11 18:50:39,752][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-11 18:50:39,752][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-11 18:50:39,752][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,752][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,752][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,753][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task a376b084-f3bc-4d54-8eb7-f8d5321281e8 completed successfully -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-11 18:50:39,754][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,755][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-11 18:50:39,756][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-11 18:50:39,756][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a376b084-f3bc-4d54-8eb7-f8d5321281e8 -[2026-02-11 18:50:39,757][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-11 18:50:39,757][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-11 18:50:39,757][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task a376b084-f3bc-4d54-8eb7-f8d5321281e8 execution finished with status: TaskStatus.SUCCESS -[2026-02-11 18:50:39,757][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] -[2026-02-11 18:50:39,757][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] -[2026-02-11 18:50:39,758][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate -[2026-02-11 18:50:39,758][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:39,758][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-11 18:50:39,759][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 18:50:39,759][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] -[2026-02-11 18:52:10,805][INFO][superset_tools_app] WebSocket connection accepted for task id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None (source=None, level=None) -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] -[2026-02-11 18:52:10,805][INFO][superset_tools_app] Starting log stream for task id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=id='a376b084-f3bc-4d54-8eb7-f8d5321281e8' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [10], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] -[2026-02-11 18:52:10,805][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] -[2026-02-11 19:05:40,016][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 19:05:40,019][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:05:40,019][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-11 19:05:40,020][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-11 19:05:40,020][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:05:40,020][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:05:40,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:05:40,203][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-11 19:05:40,205][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-11 19:05:40,205][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-11 19:05:40,205][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-11 19:05:40,205][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-11 19:05:40,206][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-11T16:05:40.206173][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-11 19:05:40,206][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-11 19:05:40,207][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-11 19:05:40,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:05:40,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:05:42,470][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 19:05:42,472][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:05:42,472][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-11 19:05:42,472][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-11 19:05:42,472][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:05:42,473][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:05:42,473][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:05:42,646][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-11 19:05:42,648][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-11T16:05:42.648718][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-11 19:05:42,648][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-11 19:05:42,649][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-11 19:05:42,649][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:05:42,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:03,308][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 19:06:03,310][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:03,311][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-11 19:06:03,311][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-11 19:06:03,311][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:03,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:03,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:03,479][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-11 19:06:03,480][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-11 19:06:03,480][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-11 19:06:03,481][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-11T16:06:03.481520][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-11 19:06:03,481][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-11 19:06:03,482][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-11 19:06:03,482][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-11 19:06:03,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:06:03,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:39,674][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-11 19:06:39,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:39,675][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-11 19:06:39,675][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-11 19:06:39,675][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:39,676][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:39,677][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:39,850][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-11 19:06:39,851][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-11 19:06:39,851][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-11 19:06:39,851][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-11 19:06:39,851][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-11 19:06:39,852][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-11 19:06:39,852][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-11T16:06:39.852471][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-11 19:06:39,852][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-11 19:06:39,852][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-11 19:06:39,852][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-11 19:06:39,852][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-11 19:06:39,853][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-11 19:06:39,853][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:06:39,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:57,901][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-11 19:06:57,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:57,902][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 19:06:57,902][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 19:06:57,902][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 19:06:57,902][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:57,903][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:57,903][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:57,903][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-11 19:06:57,904][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-11 19:06:57,904][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-11 19:06:57,904][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-11 19:06:57,904][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-11 19:06:57,904][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-11 19:06:57,904][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-11 19:06:57,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:06:57,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:57,918][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-11 19:06:57,918][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:57,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 19:06:57,919][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 19:06:57,919][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 19:06:57,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:57,920][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:57,920][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:57,920][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-11 19:06:57,920][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-11 19:06:57,920][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-11 19:06:57,923][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-11 19:06:57,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:06:57,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:57,953][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-11 19:06:57,954][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:57,955][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 19:06:57,955][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 19:06:57,955][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 19:06:57,955][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:57,956][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:57,956][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 19:06:57,958][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 19:06:57,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 19:06:57,959][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-11 19:06:57,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-11 19:06:57,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-11 19:06:57,965][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-11 19:06:57,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-11 19:06:57,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-11 19:06:57,966][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-11 19:06:57,966][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-11 19:06:57,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-11 19:06:57,967][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-11 19:06:57,967][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 19:06:57,968][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-11 19:06:57,968][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-11 19:06:57,968][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-11 19:06:57,973][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-11 19:06:57,973][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-11 19:06:57,973][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,401][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,402][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-11 19:07:01,402][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-14 10:24:38,363][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-14 10:24:38,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-14 10:24:38,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-14 10:24:38,363][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,370][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:38,371][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,372][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-14 10:24:38,372][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,373][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:38,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:38,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:38,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:38,374][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-14 10:24:38,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,374][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,374][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:38,630][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:38,630][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:38,631][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-14 10:24:38,631][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-14 10:24:38,632][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-14 10:24:38,633][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-14 10:24:38,633][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-14 10:24:38,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-14 10:24:38,633][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-14 10:24:38,634][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-14 10:24:38,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-14 10:24:38,634][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-14 10:24:38,634][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-14 10:24:38,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:38,635][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:39,034][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-14 10:24:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-14 10:24:39,035][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-14 10:24:39,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-14 10:24:39,035][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-14 10:24:39,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-14 10:24:39,036][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-14 10:24:39,036][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-14 10:24:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-14 10:24:39,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-14 10:24:39,037][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-14 10:24:39,037][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-14 10:24:39,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-14 10:24:39,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-14 10:24:39,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-14 10:24:39,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-14 10:24:39,039][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-14 10:24:39,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-14 10:24:39,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-14 10:24:39,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-14 10:24:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-14 10:24:39,048][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-14 10:24:39,048][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-14 10:24:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-14 10:24:39,049][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-14 10:24:39,049][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-14 10:24:39,049][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-14 10:24:39,049][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-14 10:24:39,050][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-14 10:24:39,050][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-14 10:24:39,061][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-14 10:24:39,061][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-14 10:24:39,062][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-14 10:24:39,062][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-14 10:24:39,062][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-14 10:24:39,062][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-14 10:24:39,062][INFO][superset_tools_app] TaskManager initialized -[2026-02-14 10:24:39,062][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-14 10:24:39,064][INFO][superset_tools_app] SchedulerService initialized -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-14 10:24:39,064][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-14 10:24:39,064][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-14 10:24:39,064][INFO][superset_tools_app] ResourceService initialized -[2026-02-14 10:24:39,099][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-14 10:24:39,100][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-14 10:24:39,100][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-14 10:24:39,230][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-14 10:24:39,230][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-14 10:24:39,230][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-14 10:24:39,230][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-14 10:24:39,231][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-14 10:24:39,231][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-14 10:24:39,231][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-14 10:24:58,248][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-14 10:24:58,249][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-14 10:24:58,250][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-14 10:24:58,250][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-14 10:24:58,250][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-14 10:24:58,251][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-14 10:24:58,251][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-14 10:24:58,439][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-14 10:24:58,441][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-14 10:24:58,441][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-14 10:24:58,441][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-14 10:24:58,442][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-14 10:24:58,442][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-14 10:24:58,442][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-14T07:24:58.442878][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-14 10:24:58,442][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-14 10:24:58,442][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-14 10:24:58,442][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-14 10:24:58,444][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-14 10:24:58,453][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-14 10:24:58,453][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-14 10:24:58,453][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-14 10:24:58,454][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-14 10:24:58,454][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-14 10:24:58,454][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-14 10:24:58,454][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-14 10:24:58,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-14 10:24:58,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-14 10:24:58,461][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-14 10:24:58,461][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-14 10:24:58,462][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-14 10:24:58,462][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-14 10:24:58,462][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-14 10:24:58,462][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-14 10:24:58,463][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-14 10:24:58,463][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-14 10:24:58,463][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-14 10:24:58,463][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-14 10:24:58,463][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-14 10:24:58,465][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-14 10:24:58,465][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-14 10:24:58,466][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-14 10:24:58,488][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-14 10:24:58,488][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-14 10:24:58,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-14 10:24:58,489][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-14 10:24:58,489][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-14 10:24:58,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-14 10:24:58,490][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-14 10:24:58,491][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-14 10:24:58,491][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-14 10:24:58,491][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-14 10:24:58,491][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-14 10:24:58,732][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-14 10:24:58,733][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-14 10:24:58,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-14 10:24:58,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-14 10:24:58,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-14 10:24:58,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-14 10:24:58,734][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-14 10:24:58,734][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-14 10:24:58,736][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-14 10:24:58,736][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-14 10:24:58,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-14 10:24:58,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-14 10:24:58,737][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-14 10:24:58,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-14 10:24:58,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-14 10:24:58,737][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-14 10:24:58,738][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-14 10:24:58,738][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-14 10:24:58,745][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-14 10:24:58,746][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-14 10:24:58,747][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-14 10:24:58,747][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-14 10:24:58,747][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-14 10:24:58,747][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-14 10:24:58,747][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-14 10:24:58,748][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-14 10:24:58,749][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-14 10:24:58,749][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-14 10:24:58,750][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-14 10:24:58,750][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-14 10:24:58,755][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-14 10:24:58,756][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-14 10:24:58,756][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-14 10:27:01,860][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,861][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,862][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-14 10:27:01,862][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-15 11:12:50,389][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-15 11:12:50,389][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-15 11:12:50,989][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 11:12:50,989][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:50,989][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:50,989][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:50,993][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:50,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:50,995][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:50,996][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:50,997][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:50,997][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-15 11:12:50,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:50,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:50,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:51,176][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:51,176][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:51,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 11:12:51,177][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 11:12:51,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:51,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:51,484][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:51,485][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:51,485][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-15 11:12:51,486][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-15 11:12:51,486][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-15 11:12:51,486][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-15 11:12:51,487][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-15 11:12:51,487][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:51,488][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-15 11:12:51,488][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 11:12:51,489][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:51,489][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:51,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:51,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:51,504][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:51,504][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-15 11:12:51,504][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-15 11:12:51,504][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-15 11:12:51,505][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-15 11:12:51,505][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-15 11:12:51,505][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-15 11:12:51,505][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-15 11:12:51,505][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-15 11:12:51,526][INFO][superset_tools_app] TaskManager initialized -[2026-02-15 11:12:51,526][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-15 11:12:51,527][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-15 11:12:51,527][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-15 11:12:51,527][INFO][superset_tools_app] SchedulerService initialized -[2026-02-15 11:12:51,527][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-15 11:12:51,527][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 11:12:51,528][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:51,528][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:51,528][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-15 11:12:51,528][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-15 11:12:51,528][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-15 11:12:51,528][INFO][superset_tools_app] ResourceService initialized -[2026-02-15 11:12:51,568][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-15 11:12:51,568][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:51,568][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-15 11:12:51,713][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:51,713][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-15 11:12:51,713][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-15 11:12:51,714][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-15 11:12:51,916][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-15 11:12:51,916][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-15 11:12:52,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 11:12:52,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:52,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:52,407][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-15 11:12:52,410][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,411][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,412][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,412][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,412][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,413][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,413][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-15 11:12:52,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-15 11:12:52,591][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 11:12:52,592][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,592][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-15 11:12:52,854][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-15 11:12:52,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-15 11:12:52,854][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-15 11:12:52,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-15 11:12:52,855][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:52,855][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 11:12:52,855][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 11:12:52,855][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 11:12:52,863][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 11:12:52,864][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 11:12:52,864][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-15 11:12:52,864][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-15 11:12:52,864][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-15 11:12:52,874][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-15 11:12:52,874][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-15 11:12:52,874][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-15 11:12:52,874][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-15 11:12:52,875][INFO][superset_tools_app] TaskManager initialized -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-15 11:12:52,875][INFO][superset_tools_app] SchedulerService initialized -[2026-02-15 11:12:52,875][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-15 11:12:52,876][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 11:12:52,876][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:52,876][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:52,876][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-15 11:12:52,876][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-15 11:12:52,876][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-15 11:12:52,876][INFO][superset_tools_app] ResourceService initialized -[2026-02-15 11:12:52,908][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-15 11:12:52,908][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 11:12:52,908][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 11:12:53,024][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-15 11:12:53,024][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-15 11:12:53,024][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-15 11:12:53,025][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-15 11:12:53,025][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-15 11:12:53,025][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-15 11:12:53,026][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-15 11:12:53,026][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-15 11:12:53,026][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-15 12:49:02,564][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-15 12:49:02,564][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-15 12:49:02,564][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-15 12:49:02,564][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-15 12:49:02,565][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-15 12:49:02,565][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-15 12:49:02,565][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-15 12:49:04,581][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 12:49:04,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:49:04,581][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:49:04,581][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,586][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,587][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 12:49:04,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,588][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:04,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:04,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:04,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:04,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,825][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 12:49:04,826][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-15 12:49:04,827][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:04,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:05,108][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:05,108][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-15 12:49:05,109][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-15 12:49:05,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-15 12:49:05,109][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-15 12:49:05,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-15 12:49:05,110][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-15 12:49:05,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:49:05,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:49:05,111][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-15 12:49:05,111][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-15 12:49:05,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-15 12:49:05,112][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-15 12:49:05,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-15 12:49:05,119][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-15 12:49:05,119][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-15 12:49:05,120][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:49:05,120][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-15 12:49:05,120][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-15 12:49:05,120][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-15 12:49:05,121][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-15 12:49:05,121][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-15 12:49:05,130][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-15 12:49:05,130][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-15 12:49:05,130][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-15 12:49:05,131][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-15 12:49:05,131][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-15 12:49:05,131][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-15 12:49:05,131][INFO][superset_tools_app] TaskManager initialized -[2026-02-15 12:49:05,131][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-15 12:49:05,132][INFO][superset_tools_app] SchedulerService initialized -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 12:49:05,132][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-15 12:49:05,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-15 12:49:05,132][INFO][superset_tools_app] ResourceService initialized -[2026-02-15 12:49:05,160][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-15 12:49:05,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-15 12:49:05,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-15 12:49:05,280][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 12:49:05,280][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-15 12:49:05,281][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-15 12:49:05,281][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-15 12:49:11,053][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-15 12:49:11,055][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:11,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:11,058][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-15 12:49:11,058][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-15 12:49:11,059][INFO][superset_tools_app] Response status: 401 for /api/plugins -[2026-02-15 12:49:11,072][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 12:49:11,073][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:11,073][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:11,073][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-15 12:49:11,073][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-15 12:49:11,074][INFO][superset_tools_app] Response status: 401 for /api/auth/me -[2026-02-15 12:49:13,570][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-15 12:49:13,571][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:13,572][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-15 12:49:13,572][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-15 12:49:13,572][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:49:13,574][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:49:13,574][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:49:13,763][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-15 12:49:13,765][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-15 12:49:13,765][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-15 12:49:13,765][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-15 12:49:13,765][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-15 12:49:13,766][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-15 12:49:13,766][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-15T09:49:13.766606][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-15 12:49:13,766][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-15 12:49:13,766][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-15 12:49:13,766][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-15 12:49:13,767][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-15 12:49:13,767][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-15 12:49:13,767][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-15 12:49:13,767][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-15 12:49:13,768][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-15 12:49:13,768][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-15 12:49:13,768][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-15 12:49:13,768][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-15 12:49:13,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:49:13,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:49:13,773][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 12:49:13,773][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:13,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:13,774][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:49:13,774][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:49:13,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:49:13,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:49:13,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:49:13,775][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 12:49:13,775][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 12:49:13,775][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 12:49:13,777][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 12:49:13,778][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:49:13,778][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:49:13,784][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-15 12:49:13,785][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:13,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:13,785][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:49:13,785][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:49:13,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:49:13,786][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:49:13,786][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-15 12:49:13,787][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-15 12:49:13,788][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-15 12:49:13,788][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:49:13,788][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:49:14,030][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-15 12:49:14,032][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:14,032][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:14,033][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:49:14,033][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:49:14,033][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:49:14,033][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:49:14,034][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:49:14,034][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-15 12:49:14,035][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-15 12:49:14,035][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:49:14,035][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:49:14,035][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-15 12:49:14,035][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:49:14,035][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:49:14,035][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-15 12:49:14,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:49:14,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:49:14,045][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-15 12:49:14,046][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:49:14,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:49:14,047][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:49:14,047][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:49:14,047][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:49:14,047][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:49:14,047][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-15 12:49:14,048][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-15 12:49:14,048][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-15 12:49:14,048][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-15 12:49:14,054][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-15 12:49:14,055][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-15 12:49:14,055][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-15 12:49:14,055][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-15 12:49:14,055][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-15 12:49:14,056][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-15 12:49:14,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-15 12:49:14,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-15 12:49:14,056][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-15 12:49:14,056][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-15 12:49:14,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-15 12:49:14,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-15 12:49:14,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,195][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,196][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,196][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:51:17,197][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-15 12:51:17,197][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 12:51:17,197][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 12:51:17,197][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-15 12:51:17,198][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:51:17,198][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-15 12:51:17,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:51:17,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:51:17,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:51:17,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:51:17,202][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:51:17,202][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:51:17,202][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 12:51:17,202][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 12:51:17,202][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 12:51:17,202][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 12:51:17,203][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 12:51:17,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:51:17,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-15 12:51:17,204][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-15 12:51:17,205][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-15 12:51:17,205][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-15 12:51:17,205][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-15 12:51:17,205][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:51:17,205][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:51:17,212][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-15 12:51:17,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 12:51:17,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:51:17,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:51:17,213][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:51:17,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:51:17,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:51:17,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-15 12:51:17,215][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:51:17,215][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-15 12:51:17,215][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 12:51:17,216][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 12:51:17,220][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-15 12:51:17,221][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 12:51:17,221][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 12:51:17,221][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 12:51:17,222][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 12:51:17,222][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 12:51:17,222][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 12:51:17,222][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-15 12:51:17,223][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:51:17,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-15 12:51:17,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-15 12:51:17,224][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-15 12:51:17,228][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-15 12:51:17,228][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-15 12:51:17,228][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-15 12:51:17,228][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-15 12:51:17,228][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-15 12:51:17,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-15 12:51:17,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-15 12:51:17,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-15 12:53:20,366][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-15 12:53:20,366][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,367][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,368][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-15 12:53:20,368][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-15 13:05:58,239][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 13:05:58,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:05:58,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:05:58,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:05:58,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:05:58,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:05:58,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:05:58,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:05:58,244][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 13:05:58,244][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 13:05:58,245][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 13:05:58,245][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 13:05:58,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:05:58,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:00,129][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 13:06:00,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:00,130][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:00,130][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:00,130][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:00,130][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:00,131][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:00,131][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:00,131][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 13:06:00,131][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 13:06:00,131][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 13:06:00,132][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 13:06:00,133][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:00,133][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:00,146][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-15 13:06:00,148][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-15 13:06:00,148][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:00,148][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:00,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:00,151][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:00,152][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:00,152][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:00,153][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:00,153][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-15 13:06:00,154][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-15 13:06:00,154][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-15 13:06:00,155][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-15 13:06:00,157][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:00,157][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:00,157][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-15 13:06:00,158][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-15 13:06:00,158][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-15 13:06:00,159][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-15 13:06:00,160][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:00,160][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-15 13:06:02,009][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 13:06:02,010][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:02,010][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:02,010][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:02,010][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:02,010][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:02,012][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:02,012][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:02,012][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 13:06:02,012][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 13:06:02,012][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 13:06:02,013][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 13:06:02,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:02,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:02,022][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-15 13:06:02,022][INFO][superset_tools_app] Incoming request: GET /api/admin/permissions -[2026-02-15 13:06:02,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:02,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:02,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:02,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:02,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:02,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:02,025][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:02,026][DEBUG][superset_tools_app] [api.admin.list_permissions][Entry] -[2026-02-15 13:06:02,026][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [AuthRepository.list_permissions][Entry] -[2026-02-15 13:06:02,027][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Coherence:OK] -[2026-02-15 13:06:02,027][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Exit] -[2026-02-15 13:06:02,027][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Coherence:OK] -[2026-02-15 13:06:02,027][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Exit] -[2026-02-15 13:06:02,028][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-15 13:06:02,028][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-15 13:06:02,028][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-15 13:06:02,028][INFO][superset_tools_app] Response status: 200 for /api/admin/permissions -[2026-02-15 13:06:02,029][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-15 13:06:02,029][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:02,029][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:02,029][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:02,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:03,944][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-15 13:06:03,945][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:03,945][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:03,946][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:03,946][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:03,946][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:03,947][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:03,947][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-15 13:06:03,948][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 13:06:03,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 13:06:03,950][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-15 13:06:03,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:03,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:03,961][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-15 13:06:03,962][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:03,962][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:03,962][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:03,962][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:03,962][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:03,964][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:03,964][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:03,964][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-15 13:06:03,964][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-15 13:06:03,964][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-15 13:06:03,965][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-15 13:06:03,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:03,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-15 13:06:03,973][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-15 13:06:03,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-15 13:06:03,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-15 13:06:03,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-15 13:06:03,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-15 13:06:03,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-15 13:06:03,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-15 13:06:03,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-15 13:06:03,976][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-15 13:06:03,976][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-15 13:06:03,976][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-15 13:06:03,976][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-15 13:06:03,976][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-15 13:06:03,977][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-15 13:06:03,977][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-15 13:06:03,977][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-15 13:06:03,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-15 13:06:03,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:07:38,227][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-16 12:07:38,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:07:38,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:07:38,227][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-16 12:07:38,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-16 12:07:38,235][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,236][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,236][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,237][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,238][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,238][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:38,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:38,239][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-16 12:07:38,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,240][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,240][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:38,601][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:38,601][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,601][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-16 12:07:38,602][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-16 12:07:38,603][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-16 12:07:38,604][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-16 12:07:38,604][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-16 12:07:38,604][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:38,604][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:38,604][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:39,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-16 12:07:39,042][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:39,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:39,043][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:39,044][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-16 12:07:39,044][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-16 12:07:39,044][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-16 12:07:39,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-16 12:07:39,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-16 12:07:39,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:07:39,045][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-16 12:07:39,045][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-16 12:07:39,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-16 12:07:39,046][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-16 12:07:39,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-16 12:07:39,060][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:07:39,060][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-16 12:07:39,060][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-16 12:07:39,060][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-16 12:07:39,075][INFO][superset_tools_app] TaskManager initialized -[2026-02-16 12:07:39,075][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-16 12:07:39,077][INFO][superset_tools_app] SchedulerService initialized -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-16 12:07:39,077][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-16 12:07:39,077][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-16 12:07:39,077][INFO][superset_tools_app] ResourceService initialized -[2026-02-16 12:07:39,125][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-16 12:07:39,125][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-16 12:07:39,125][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-16 12:07:39,296][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-16 12:07:39,296][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-16 12:07:39,296][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-16 12:07:39,296][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-16 12:07:39,297][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-16 12:07:39,297][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-16 12:07:39,297][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-16 12:07:39,298][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-16 12:07:39,298][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-16 12:07:39,298][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-16 12:07:39,298][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-16 12:07:39,299][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-16 12:13:05,475][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-16 12:13:05,482][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:05,484][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:05,490][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-16 12:13:05,491][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-16 12:13:05,492][INFO][superset_tools_app] Response status: 401 for /api/plugins -[2026-02-16 12:13:05,524][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 12:13:05,527][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:05,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:05,529][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. -[2026-02-16 12:13:05,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-16 12:13:05,531][INFO][superset_tools_app] Response status: 401 for /api/auth/me -[2026-02-16 12:13:08,429][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-16 12:13:08,432][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:08,432][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-16 12:13:08,432][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-16 12:13:08,432][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:13:08,434][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:13:08,434][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:13:08,631][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-16 12:13:08,643][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-16 12:13:08,643][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-16 12:13:08,643][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-16 12:13:08,644][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-16 12:13:08,648][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-16 12:13:08,648][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-16T09:13:08.648494][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-16 12:13:08,648][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-16 12:13:08,648][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-16 12:13:08,648][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-16 12:13:08,652][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-16 12:13:08,652][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-16 12:13:08,652][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-16 12:13:08,653][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-16 12:13:08,653][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-16 12:13:08,653][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-16 12:13:08,653][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-16 12:13:08,653][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-16 12:13:08,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:13:08,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:13:08,663][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 12:13:08,665][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:08,665][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:08,666][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:13:08,666][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:13:08,667][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:13:08,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:13:08,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:13:08,669][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 12:13:08,669][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 12:13:08,669][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 12:13:08,675][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 12:13:08,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:13:08,676][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:13:08,687][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-16 12:13:08,688][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:08,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:08,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:13:08,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:13:08,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:13:08,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:13:08,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:13:08,691][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-16 12:13:08,692][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-16 12:13:08,692][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-16 12:13:08,692][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-16 12:13:08,692][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-16 12:13:08,692][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-16 12:13:08,692][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-16 12:13:08,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:13:08,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:13:09,226][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 12:13:09,227][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:09,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:09,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:13:09,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:13:09,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:13:09,230][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:13:09,231][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:13:09,233][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:13:09,234][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 12:13:09,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:13:09,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:13:09,234][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:13:09,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:13:09,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:13:09,235][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 12:13:09,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:13:09,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:13:09,247][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 12:13:09,250][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:13:09,251][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:13:09,251][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:13:09,251][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:13:09,251][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:13:09,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:13:09,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:13:09,255][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 12:13:09,256][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 12:13:09,256][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 12:13:09,256][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 12:13:09,264][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 12:13:09,265][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 12:13:09,265][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 12:13:09,265][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 12:13:09,265][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 12:13:09,266][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 12:13:09,266][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 12:13:09,266][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 12:13:09,266][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 12:13:09,266][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 12:13:09,266][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 12:13:09,266][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 12:13:09,266][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,407][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:15:12,408][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 12:15:12,408][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-16 12:15:12,409][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 12:15:12,409][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:15:12,409][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:15:12,409][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:15:12,410][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:15:12,410][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:15:12,410][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:15:12,410][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 12:15:12,411][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 12:15:12,412][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:15:12,412][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 12:15:12,412][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:15:12,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:15:12,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-16 12:15:12,413][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-16 12:15:12,413][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-16 12:15:12,414][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:15:12,414][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:15:12,430][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 12:15:12,431][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:15:12,431][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:15:12,431][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:15:12,431][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:15:12,431][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:15:12,432][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:15:12,432][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:15:12,432][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 12:15:12,432][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 12:15:12,433][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 12:15:12,434][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 12:15:12,434][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:15:12,435][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:15:12,496][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 12:15:12,496][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:15:12,497][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:15:12,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:15:12,497][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:15:12,497][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:15:12,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:15:12,499][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:15:12,502][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:15:12,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:15:12,503][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 12:15:12,504][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:15:12,504][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:15:12,527][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 12:15:12,527][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:15:12,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:15:12,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:15:12,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:15:12,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:15:12,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:15:12,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:15:12,531][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 12:15:12,531][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 12:15:12,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:15:12,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:15:12,531][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 12:15:12,532][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 12:15:12,532][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 12:15:12,532][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 12:15:12,538][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 12:15:12,538][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 12:15:12,538][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 12:15:12,538][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 12:15:12,538][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 12:15:12,539][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 12:15:12,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 12:15:12,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 12:15:12,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 12:17:15,678][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 12:17:15,678][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,679][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,681][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:17:15,681][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 12:17:15,683][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 12:17:15,684][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:17:15,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:17:15,684][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:17:15,684][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:17:15,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:17:15,685][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:17:15,685][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:17:15,685][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 12:17:15,685][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 12:17:15,685][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 12:17:15,686][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 12:17:15,687][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:17:15,687][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:17:15,712][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 12:17:15,712][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:17:15,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:17:15,713][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:17:15,713][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:17:15,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:17:15,714][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:17:15,714][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:17:15,717][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:17:15,717][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 12:17:15,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:17:15,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:17:15,717][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 12:17:15,718][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:17:15,718][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:17:15,718][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 12:17:15,718][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 12:17:15,719][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 12:17:15,729][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-16 12:17:15,730][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 12:17:15,731][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 12:17:15,731][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 12:17:15,731][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 12:17:15,731][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 12:17:15,733][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 12:17:15,733][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-16 12:17:15,735][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:17:15,735][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-16 12:17:15,736][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 12:17:15,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 12:17:15,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 12:17:15,736][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-16 12:17:15,736][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 12:17:15,736][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 12:17:15,741][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 12:17:15,741][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 12:17:15,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 12:19:18,880][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-16 13:59:07,820][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 13:59:07,821][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 13:59:07,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 13:59:07,822][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 13:59:07,822][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 13:59:07,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 13:59:07,823][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 13:59:07,823][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 13:59:07,823][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 13:59:07,823][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 13:59:07,823][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 13:59:07,824][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 13:59:07,825][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 13:59:07,825][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 13:59:13,193][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 13:59:13,193][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 13:59:13,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 13:59:13,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 13:59:13,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 13:59:13,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 13:59:13,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 13:59:13,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 13:59:13,196][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 13:59:13,196][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 13:59:13,196][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 13:59:13,197][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 13:59:13,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 13:59:13,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:34:35,542][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-16 14:34:35,542][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:34:35,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:34:35,543][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:34:35,543][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:34:35,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:34:35,543][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:34:35,544][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-16 14:34:35,545][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-16 14:34:35,545][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-16 14:34:35,546][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:34:35,546][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:34:35,569][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 14:34:35,569][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:34:35,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:34:35,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:34:35,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:34:35,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:34:35,571][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:34:35,571][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:34:35,571][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 14:34:35,571][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 14:34:35,571][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 14:34:35,573][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 14:34:35,573][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:34:35,573][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:34:35,635][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 14:34:35,635][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:34:35,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:34:35,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:34:35,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:34:35,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:34:35,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:34:35,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:34:35,637][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:34:35,638][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 14:34:35,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:34:35,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:34:35,638][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:34:35,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:34:35,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:34:35,638][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 14:34:35,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:34:35,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:34:35,649][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 14:34:35,649][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:34:35,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:34:35,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:34:35,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:34:35,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:34:35,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:34:35,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:34:35,652][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 14:34:35,652][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:34:35,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:34:35,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:34:35,653][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 14:34:35,654][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 14:34:35,654][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 14:34:35,661][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 14:34:35,661][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 14:34:35,661][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:36:38,775][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 14:36:43,807][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 14:36:43,808][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:36:43,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:36:43,808][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:36:43,808][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:36:43,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:36:43,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:36:43,809][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:36:43,809][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 14:36:43,809][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 14:36:43,810][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 14:36:43,811][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 14:36:43,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:36:43,813][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:36:43,828][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 14:36:43,829][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:36:43,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:36:43,830][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:36:43,830][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:36:43,830][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:36:43,831][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:36:43,832][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:36:43,833][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:36:43,833][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 14:36:43,833][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:36:43,833][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:36:43,834][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:36:43,834][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:36:43,834][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:36:43,834][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 14:36:43,835][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:36:43,835][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:36:43,870][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 14:36:43,872][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:36:43,873][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:36:43,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:36:43,874][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:36:43,874][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:36:43,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:36:43,876][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 14:36:43,878][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:36:43,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:36:43,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 14:36:43,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 14:36:43,885][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 14:36:43,886][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 14:36:43,886][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 14:36:43,886][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 14:36:43,886][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 14:36:43,887][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 14:36:43,887][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 14:36:43,887][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 14:36:43,887][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 14:38:47,025][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 14:38:47,025][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 14:38:47,025][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 14:38:47,025][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,025][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,026][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:38:47,027][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 14:38:47,028][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 14:38:47,028][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:38:47,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:38:47,028][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:38:47,028][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:38:47,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:38:47,029][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:38:47,029][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:38:47,029][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 14:38:47,029][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 14:38:47,029][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 14:38:47,030][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 14:38:47,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:38:47,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:38:47,047][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 14:38:47,048][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:38:47,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:38:47,048][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:38:47,048][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:38:47,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:38:47,049][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:38:47,049][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:38:47,051][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:38:47,052][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 14:38:47,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:38:47,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:38:47,052][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:38:47,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:38:47,052][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:38:47,052][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 14:38:47,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:38:47,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:38:47,061][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 14:38:47,062][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:38:47,062][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:38:47,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:38:47,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:38:47,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:38:47,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:38:47,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:38:47,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:38:47,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 14:38:47,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 14:38:47,071][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 14:38:47,071][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 14:38:47,071][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 14:38:47,071][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 14:38:47,071][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 14:38:47,072][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 14:38:47,072][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 14:38:47,072][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 14:40:50,197][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 14:40:50,197][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:40:50,199][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 14:46:12,279][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 14:46:12,280][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:46:12,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:46:12,281][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:46:12,281][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:46:12,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:46:12,283][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:46:12,283][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:46:12,284][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 14:46:12,284][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 14:46:12,284][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 14:46:12,288][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 14:46:12,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:46:12,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:46:12,319][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-16 14:46:12,321][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:46:12,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:46:12,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:46:12,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:46:12,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:46:12,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:46:12,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:46:12,330][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:46:12,330][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-16 14:46:12,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:46:12,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:46:12,330][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-16 14:46:12,330][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:46:12,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:46:12,331][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-16 14:46:12,332][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:46:12,332][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-16 14:46:12,342][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-16 14:46:12,344][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:46:12,344][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:46:12,344][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:46:12,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:46:12,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:46:12,345][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:46:12,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:46:12,347][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:46:12,348][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-16 14:46:12,348][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-16 14:46:12,348][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-16 14:46:12,355][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-16 14:46:12,355][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-16 14:46:12,355][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-16 14:46:12,355][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-16 14:46:12,355][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-16 14:46:12,355][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-16 14:46:12,356][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-16 14:46:12,356][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-16 14:46:12,356][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-16 14:46:12,356][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-16 14:48:15,495][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-16 14:48:15,495][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-16 14:48:15,495][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-16 14:48:15,495][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,495][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,496][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,497][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by ConnectTimeoutError(, 'Connection to superset.bebesh.ru timed out. (connect timeout=30)')) | Context: {} -[2026-02-16 14:48:15,497][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-16 14:48:15,498][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-16 14:48:15,498][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-16 14:48:15,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-16 14:48:15,499][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-16 14:48:15,499][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-16 14:48:15,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-16 14:48:15,500][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-16 14:48:15,500][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-16 14:48:15,500][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-16 14:48:15,500][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-16 14:48:15,500][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-16 14:48:15,503][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-16 14:48:15,503][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-16 14:48:15,503][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:07:47,022][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:07:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:07:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:07:47,022][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 10:07:47,028][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 10:07:47,028][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 10:07:47,028][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 10:07:47,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,029][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,031][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,031][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,032][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,271][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,271][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 10:07:47,272][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:07:47,273][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,273][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,588][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 10:07:47,588][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 10:07:47,588][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 10:07:47,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 10:07:47,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 10:07:47,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:07:47,589][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 10:07:47,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:07:47,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:07:47,590][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:07:47,603][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:07:47,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:07:47,604][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:07:47,604][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 10:07:47,604][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 10:07:47,616][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 10:07:47,616][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 10:07:47,617][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:07:47,617][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 10:07:47,617][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 10:07:47,617][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 10:07:47,649][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 10:07:47,649][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:07:47,649][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:07:47,768][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 10:07:47,769][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:07:47,769][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 10:07:47,770][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 10:07:47,770][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 10:29:41,452][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 10:29:41,454][INFO][superset_tools_app] Response status: 401 for /api/plugins -[2026-02-18 10:29:43,762][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 10:29:43,763][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:43,763][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 10:29:43,763][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 10:29:43,763][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:43,765][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:43,765][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:43,951][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 10:29:43,953][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 10:29:43,953][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 10:29:43,953][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 10:29:43,953][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 10:29:43,954][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-18 10:29:43,954][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T07:29:43.954491][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-18 10:29:43,954][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 10:29:43,954][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 10:29:43,954][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 10:29:43,955][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 10:29:43,958][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 10:29:43,958][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 10:29:43,959][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:43,959][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:43,963][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 10:29:43,963][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:43,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:43,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:43,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:43,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:43,965][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:43,965][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:43,965][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 10:29:43,965][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 10:29:43,965][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 10:29:43,967][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 10:29:43,967][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:43,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:43,976][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 10:29:43,976][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:43,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:43,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:43,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:43,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 10:29:43,978][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 10:29:43,979][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 10:29:43,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:43,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:44,223][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 10:29:44,224][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:44,224][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:44,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:44,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:44,225][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:44,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:44,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:29:44,228][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:44,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:44,229][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 10:29:44,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:44,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:44,236][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 10:29:44,238][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:44,238][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:44,239][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:44,239][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:44,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:44,239][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:44,239][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:44,241][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:44,241][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:29:44,241][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:29:44,247][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:29:44,248][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:29:44,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,560][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,561][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,561][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:47,561][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-18 10:29:49,590][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 10:29:49,593][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:49,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:49,593][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:49,593][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:49,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:49,594][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:49,594][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:29:49,595][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:49,596][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:49,596][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:29:49,596][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:29:49,601][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:29:49,601][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:29:49,601][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 10:29:49,601][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:29:49,601][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:29:49,602][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:29:49,602][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:29:49,602][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:29:49,602][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:29:49,602][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:29:49,602][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:29:50,970][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 10:29:50,971][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 10:29:50,971][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 10:29:50,971][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 10:29:50,971][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 10:29:51,618][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 10:29:51,618][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 10:29:51,619][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 10:29:52,095][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 10:29:52,096][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,096][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,096][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,096][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 10:29:52,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,097][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,097][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,100][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 10:29:52,101][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,106][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,106][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,106][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,107][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,107][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 10:29:52,108][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 10:29:52,108][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 10:29:52,108][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 10:29:52,109][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 10:29:52,109][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 10:29:52,109][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 10:29:52,109][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 10:29:52,110][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:52,110][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:52,923][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 10:29:52,923][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:52,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:52,924][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:52,924][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:52,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:52,925][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:52,925][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:52,925][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 10:29:52,926][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 10:29:52,926][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 10:29:52,927][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 10:29:52,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:52,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:52,935][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 10:29:52,936][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:52,936][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:52,936][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:52,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:52,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:52,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:52,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:29:52,939][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:52,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:52,939][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 10:29:52,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:29:52,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:29:52,947][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 10:29:52,949][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:52,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:52,949][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:52,949][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:52,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:52,950][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:52,950][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:52,951][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:52,951][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:52,952][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:29:52,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:52,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:52,952][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:29:52,952][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:29:52,952][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:29:52,956][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:29:52,956][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:29:52,956][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:29:52,956][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:29:52,956][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:29:52,956][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:29:52,956][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:29:52,957][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:29:52,957][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:29:52,957][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:29:52,957][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,269][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,270][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,270][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:29:56,271][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 10:29:57,631][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 10:29:57,633][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:29:57,633][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:29:57,634][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:29:57,634][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:29:57,634][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:29:57,635][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:29:57,635][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:29:57,636][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:57,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:29:57,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:29:57,637][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:29:57,638][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:29:57,643][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:29:57,643][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:29:57,643][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:29:57,643][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:29:57,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:29:57,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:29:57,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:29:57,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:01,031][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:01,031][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:01,031][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:01,031][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,032][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,033][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:01,033][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 10:30:02,081][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 10:30:02,084][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:02,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:02,084][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:02,084][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:02,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:02,085][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:02,085][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:02,086][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:30:02,086][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 10:30:02,086][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:02,087][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:02,087][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:02,087][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:02,093][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:02,093][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:02,093][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:30:02,093][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:02,093][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:02,094][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:02,094][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:02,094][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:02,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:02,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:02,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:02,426][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 10:30:02,426][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 10:30:02,426][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 10:30:02,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 10:30:02,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 10:30:02,636][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 10:30:02,636][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 10:30:02,636][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 10:30:02,636][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 10:30:02,637][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 10:30:02,769][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 10:30:02,769][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 10:30:02,769][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 10:30:02,770][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 10:30:02,770][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 10:30:02,770][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 10:30:02,770][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 10:30:02,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:30:02,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:30:11,588][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-18 10:30:11,589][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:11,589][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:11,589][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:11,589][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:11,589][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:11,590][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:11,590][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:11,592][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-18 10:30:11,592][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:30:11,593][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:11,593][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:11,594][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:11,594][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:11,598][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:11,598][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:11,598][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:14,907][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:14,907][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:14,907][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:14,907][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:14,908][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-18 10:30:14,911][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-18 10:30:14,912][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:14,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:14,921][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:14,921][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:14,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:14,922][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:14,922][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:14,923][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:14,923][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:14,923][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:14,927][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:14,928][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:14,928][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,236][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,237][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:18,237][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-18 10:30:18,239][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-18 10:30:18,240][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:18,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:18,241][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:18,241][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:18,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:18,242][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:18,243][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:18,244][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-18 10:30:18,244][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:18,245][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:18,245][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:18,245][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:18,249][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:18,249][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:18,249][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:18,249][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:30:18,249][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:30:18,250][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:18,250][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:18,250][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:18,250][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:18,250][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,558][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,559][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,559][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,559][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:21,559][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-18 10:30:21,562][INFO][superset_tools_app] Incoming request: GET /api/datasets/ids -[2026-02-18 10:30:21,563][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:21,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:21,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:21,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:21,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:21,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:21,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_dataset_ids][Entry] env_id=ss1, search=None -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_environments][Entry] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:21,567][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:21,568][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:21,568][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:21,568][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:21,572][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:21,572][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:21,572][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][ERROR][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,881][DEBUG][superset_tools_app] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Action] [get_dataset_ids][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,882][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset IDs: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:24,882][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 10:30:24,883][INFO][superset_tools_app] Response status: 503 for /api/datasets/ids -[2026-02-18 10:30:24,883][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:24,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:24,884][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:24,884][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:24,884][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:24,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:24,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:24,885][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 10:30:24,885][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 10:30:24,885][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 10:30:24,886][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 10:30:24,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:30:24,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:30:24,894][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 10:30:24,895][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:24,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:24,895][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:24,895][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:24,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:24,896][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:24,896][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:30:24,897][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:24,897][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:24,897][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 10:30:24,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:30:24,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:30:24,905][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 10:30:24,906][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:24,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:24,907][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:24,907][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:24,907][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:24,908][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:24,908][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:24,909][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:24,910][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 10:30:24,910][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 10:30:24,910][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 10:30:24,915][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 10:30:24,915][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 10:30:24,915][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 10:30:24,915][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 10:30:24,915][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 10:30:24,915][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 10:30:24,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 10:30:24,915][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 10:30:24,915][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 10:30:24,916][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 10:30:24,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 10:30:24,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 10:30:24,916][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 10:30:28,231][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 10:30:28,231][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 10:30:28,231][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 10:30:28,231][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,232][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 10:30:28,233][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 10:30:28,233][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-18 10:30:28,234][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:28,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:28,235][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:28,235][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:28,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:28,236][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:28,236][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:28,236][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 10:30:28,236][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 10:30:28,236][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 10:30:28,237][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 10:30:28,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:30:28,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:30:28,249][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 10:30:28,250][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/environments -[2026-02-18 10:30:28,250][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/environments -[2026-02-18 10:30:28,250][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/environments -[2026-02-18 10:30:28,251][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 10:30:28,252][INFO][superset_tools_app] Response status: 404 for /api/environments -[2026-02-18 10:30:28,254][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:30:28,254][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:30:28,254][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 10:30:28,255][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 10:30:28,255][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 10:30:28,256][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 10:30:28,256][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 10:30:28,257][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:30:28,258][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 10:30:28,258][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:30:28,259][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 10:30:28,259][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 10:30:28,259][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 10:30:28,259][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 10:30:28,259][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 10:30:28,260][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 10:30:28,260][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 10:32:26,591][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 10:32:26,592][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 10:32:26,592][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 10:32:26,592][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 10:32:26,592][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 10:32:26,592][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 10:32:26,592][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 10:32:27,161][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:32:27,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:27,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:27,161][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,164][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,165][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,165][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,166][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,166][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,167][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,337][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,337][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,337][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:32:27,338][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:32:27,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,560][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,560][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 10:32:27,561][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 10:32:27,561][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 10:32:27,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 10:32:27,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 10:32:27,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:27,562][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 10:32:27,562][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:32:27,563][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:27,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:27,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:27,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:27,570][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:32:27,570][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 10:32:27,570][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 10:32:27,571][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 10:32:27,571][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 10:32:27,580][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 10:32:27,580][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 10:32:27,581][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:27,581][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 10:32:27,581][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 10:32:27,581][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 10:32:27,608][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 10:32:27,609][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:27,609][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:27,713][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 10:32:27,713][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 10:32:27,713][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 10:32:27,713][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 10:32:27,713][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 10:32:27,714][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 10:32:27,714][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 10:32:57,980][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 10:32:57,980][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 10:32:57,981][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 10:32:57,981][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 10:32:57,981][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 10:32:57,981][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 10:32:57,981][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 10:32:58,436][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:32:58,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:58,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:58,436][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 10:32:58,438][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:58,439][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,440][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,440][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,440][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,441][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,441][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,640][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:32:58,641][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:32:58,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,642][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,864][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,864][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,864][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,865][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 10:32:58,865][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:32:58,865][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 10:32:58,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 10:32:58,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 10:32:58,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:58,866][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 10:32:58,866][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:32:58,867][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:32:58,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:32:58,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:32:58,874][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:32:58,875][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:32:58,875][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 10:32:58,875][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 10:32:58,884][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 10:32:58,884][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 10:32:58,885][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 10:32:58,885][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 10:32:58,886][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:58,886][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 10:32:58,886][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 10:32:58,886][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 10:32:58,914][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 10:32:58,914][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:32:58,914][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 10:32:59,021][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:32:59,021][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 10:32:59,022][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 10:32:59,022][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 10:40:27,171][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 10:40:27,171][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 10:40:27,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:40:27,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:27,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:27,888][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 10:40:27,892][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:27,893][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,894][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:27,894][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:27,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,896][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:27,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:27,897][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:27,898][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:27,898][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:28,213][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:28,214][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:28,214][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:40:28,214][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 10:40:28,215][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:40:28,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:28,216][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:28,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:28,563][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:28,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 10:40:28,564][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 10:40:28,564][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 10:40:28,564][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 10:40:28,564][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:28,564][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,564][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:40:28,565][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:28,565][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:28,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:28,574][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:28,574][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:40:28,574][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 10:40:28,574][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 10:40:28,575][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 10:40:28,575][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 10:40:28,585][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 10:40:28,586][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 10:40:28,586][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 10:40:28,586][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 10:40:28,586][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 10:40:28,586][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:28,587][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 10:40:28,587][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 10:40:28,587][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 10:40:28,624][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 10:40:28,624][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:28,624][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 10:40:28,775][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:28,775][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:28,776][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 10:40:28,776][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 10:40:28,777][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 10:40:29,334][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:40:29,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:29,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:29,334][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 10:40:29,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,341][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,341][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,342][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,342][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,520][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,520][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,520][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 10:40:29,521][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 10:40:29,522][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,522][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 10:40:29,793][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 10:40:29,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 10:40:29,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 10:40:29,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:29,793][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,793][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 10:40:29,794][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 10:40:29,794][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 10:40:29,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 10:40:29,803][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 10:40:29,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 10:40:29,804][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 10:40:29,804][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 10:40:29,804][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 10:40:29,815][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 10:40:29,815][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 10:40:29,815][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 10:40:29,815][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 10:40:29,816][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 10:40:29,816][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 10:40:29,816][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 10:40:29,816][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 10:40:29,816][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 10:40:29,817][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:29,817][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 10:40:29,817][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 10:40:29,817][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 10:40:29,845][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 10:40:29,845][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 10:40:29,845][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 10:40:29,974][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 10:40:29,974][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 10:40:29,974][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 10:40:29,974][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 10:40:29,975][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 10:40:29,975][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 10:40:29,975][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 10:40:29,975][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 10:40:29,975][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 10:40:29,975][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 10:40:29,976][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 10:40:29,976][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 10:40:47,038][INFO][superset_tools_app] Incoming request: GET /api/environments/ -[2026-02-18 10:40:47,039][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 10:40:47,039][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 10:40:47,039][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Not enough segments -[2026-02-18 10:40:47,039][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-18 10:40:47,040][INFO][superset_tools_app] Response status: 401 for /api/environments/ -[2026-02-18 11:44:30,270][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:44:30,270][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:30,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:30,275][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:30,275][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:30,275][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:30,278][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:30,278][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:30,279][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:44:30,279][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:44:30,279][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:44:30,283][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:44:30,284][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:30,284][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:30,293][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 11:44:30,294][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/environments -[2026-02-18 11:44:30,294][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/environments -[2026-02-18 11:44:30,294][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/environments -[2026-02-18 11:44:30,294][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 11:44:30,295][INFO][superset_tools_app] Response status: 404 for /api/environments -[2026-02-18 11:44:30,295][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:30,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:30,296][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:30,296][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:30,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:30,297][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:30,297][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:30,298][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 11:44:30,298][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:44:30,299][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 11:44:30,299][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:44:30,300][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 11:44:30,300][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 11:44:30,300][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 11:44:30,300][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 11:44:30,300][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 11:44:30,301][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:30,301][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:33,360][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:44:33,360][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:33,360][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:33,361][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:33,361][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:33,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:33,361][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:33,361][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:33,362][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:44:33,362][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:44:33,362][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:44:33,363][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:44:33,364][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:33,364][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:33,371][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 11:44:33,372][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:33,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:33,373][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:33,373][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:33,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:33,375][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:33,375][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 11:44:33,377][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:44:33,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:44:33,377][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 11:44:33,378][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:33,378][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:33,383][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 11:44:33,385][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:33,385][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:33,386][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:33,386][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:33,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:33,386][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:33,386][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 11:44:33,387][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 11:44:33,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 11:44:33,388][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 11:44:33,388][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 11:44:33,394][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 11:44:33,395][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 11:44:33,395][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 11:44:34,772][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 11:44:34,772][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 11:44:34,772][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 11:44:34,772][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:44:34,772][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:44:35,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:44:35,427][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:44:35,427][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:44:35,753][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 11:44:35,754][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 11:44:35,754][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 11:44:35,754][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 11:44:35,755][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 11:44:35,755][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 11:44:35,755][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 11:44:35,755][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 11:44:35,756][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:44:35,756][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:35,756][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:35,756][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:35,756][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:35,757][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:35,757][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:35,757][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:35,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:35,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:35,758][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:44:35,758][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:44:35,758][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:44:35,759][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:44:35,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:35,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:35,768][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 11:44:35,769][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/environments -[2026-02-18 11:44:35,769][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/environments -[2026-02-18 11:44:35,769][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/environments -[2026-02-18 11:44:35,769][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 11:44:35,769][INFO][superset_tools_app] Response status: 404 for /api/environments -[2026-02-18 11:44:35,770][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:35,770][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:35,770][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:35,770][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:35,770][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:35,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:35,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:44:35,773][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:44:35,774][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 11:44:35,774][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 11:44:35,774][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 11:44:35,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:35,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:41,942][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:44:41,943][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:41,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:41,944][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:41,944][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:41,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:41,945][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:41,945][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:41,946][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:44:41,946][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:44:41,946][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:44:41,946][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:44:41,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:41,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:44:41,955][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 11:44:41,956][DEBUG][superset_tools_app] [serve_spa][Entry] path=api/environments -[2026-02-18 11:44:41,956][INFO][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [DEBUG] API route fell through to serve_spa: api/environments -[2026-02-18 11:44:41,956][DEBUG][superset_tools_app] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Action] [serve_spa][Coherence:Failed] 404: API endpoint not found: api/environments -[2026-02-18 11:44:41,956][INFO][superset_tools_app] Response status: 404 for /api/environments -[2026-02-18 11:44:44,740][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 11:44:44,741][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:44:44,741][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:44:44,741][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:44:44,741][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:44:44,741][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:44:44,742][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:44:44,742][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 11:44:44,743][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 11:44:44,744][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 11:44:44,744][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:44:44,744][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:45:24,766][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:45:24,767][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:45:24,767][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:45:24,767][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:45:24,767][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:45:24,767][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:45:24,767][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:45:25,327][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:45:25,327][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:45:25,327][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:45:25,328][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,333][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:45:25,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,334][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,335][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,554][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:45:25,555][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:45:25,556][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:45:25,556][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:45:25,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,557][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,557][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:45:25,852][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:45:25,852][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:45:25,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:45:25,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:45:25,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:45:25,853][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:45:25,853][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:45:25,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:45:25,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:45:25,863][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:45:25,864][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:45:25,864][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:45:25,864][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:45:25,864][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:45:25,865][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:45:25,865][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:45:25,880][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:45:25,880][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:45:25,881][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:45:25,881][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:45:25,881][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:45:25,881][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:45:25,921][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:45:25,921][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:45:25,921][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:45:26,049][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:45:26,049][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:45:26,050][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:45:26,050][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:46:03,332][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:46:03,332][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:46:03,898][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:46:03,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:03,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:03,898][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,903][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,904][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:03,904][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:03,905][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:03,905][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:04,080][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,080][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:04,081][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:04,081][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:46:04,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:46:04,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:46:04,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:46:04,083][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:46:04,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:04,083][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:04,083][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:04,358][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:04,359][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:46:04,359][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:46:04,359][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:46:04,360][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:46:04,360][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:46:04,360][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:46:04,360][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:04,361][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:46:04,361][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:46:04,362][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:46:04,362][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:04,363][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:04,363][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:04,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:04,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:04,374][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:04,375][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:46:04,375][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:46:04,375][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:46:04,388][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:46:04,388][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:46:04,389][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:46:04,389][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:46:04,389][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:46:04,389][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:46:04,389][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:46:04,389][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:04,390][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:04,390][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:46:04,390][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:46:04,390][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:46:04,390][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:46:04,427][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:46:04,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:04,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:46:04,555][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:46:04,555][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:46:04,556][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:46:04,556][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:46:50,360][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:46:50,360][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:46:50,360][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:46:50,360][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:46:50,361][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:46:50,361][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:46:50,361][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:46:51,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:46:51,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:51,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:51,045][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,048][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,049][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,051][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,231][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,231][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,232][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:46:51,232][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:46:51,233][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,233][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:51,475][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,476][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:46:51,476][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:46:51,476][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:46:51,476][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:46:51,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:46:51,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:51,477][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:46:51,477][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:46:51,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:46:51,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:46:51,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:46:51,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:46:51,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:46:51,486][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:46:51,486][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:46:51,486][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:46:51,486][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:46:51,497][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:46:51,497][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:46:51,498][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:51,498][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:46:51,498][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:46:51,498][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:46:51,527][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:46:51,527][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:46:51,528][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:46:51,638][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:46:51,638][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:46:51,638][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:46:51,638][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:46:51,639][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:46:51,639][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:46:51,639][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:46:51,639][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:46:51,639][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:46:51,639][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:46:51,640][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:46:51,640][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:47:48,372][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:47:48,372][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:47:48,372][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:47:48,372][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:47:48,373][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:47:48,373][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:47:48,373][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:47:48,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:47:48,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:47:48,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:47:48,939][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:47:48,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,943][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:47:48,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:48,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:48,945][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:47:48,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:48,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:48,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:49,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:49,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:49,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:47:49,157][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:47:49,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:49,158][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:49,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:49,418][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:47:49,418][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:47:49,418][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:47:49,419][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:47:49,419][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:47:49,419][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:47:49,419][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:47:49,419][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:47:49,420][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:47:49,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:47:49,427][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:47:49,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:47:49,428][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:47:49,428][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:47:49,428][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:47:49,439][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:47:49,440][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:47:49,440][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:47:49,441][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:47:49,441][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:47:49,441][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:47:49,441][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:47:49,473][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:47:49,473][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:47:49,473][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:47:49,707][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:47:49,707][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:47:49,707][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:47:49,707][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:47:49,708][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:47:49,708][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:47:49,708][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:48:25,294][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:48:25,295][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:48:25,295][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:48:25,295][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:48:25,295][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:48:25,296][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:48:25,296][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:48:26,001][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:48:26,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:26,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:26,001][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,005][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,007][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,007][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,010][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,010][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,289][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,289][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:48:26,290][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:48:26,291][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,291][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,546][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,547][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:48:26,547][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:48:26,547][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:48:26,547][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:48:26,547][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:48:26,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:26,548][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:48:26,548][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:48:26,549][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:48:26,549][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:48:26,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:26,549][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:26,549][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:26,558][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:26,559][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:26,559][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:48:26,559][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:48:26,559][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:48:26,569][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:48:26,569][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:48:26,570][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:26,570][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:48:26,570][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:48:26,571][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:48:26,571][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:48:26,599][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:48:26,599][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:26,599][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:26,846][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:48:26,846][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:48:26,846][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:48:26,846][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:48:26,846][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:48:26,847][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:48:26,847][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:48:43,988][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:48:43,988][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:48:44,682][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:48:44,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:44,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:44,682][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:48:44,686][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,688][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,688][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,689][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:44,690][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:44,690][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:48:44,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,691][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,691][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:44,913][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:44,914][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,914][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:48:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:48:44,916][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:44,916][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:45,149][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:45,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:48:45,150][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:48:45,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:48:45,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:48:45,151][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:48:45,151][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:45,151][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:48:45,151][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:48:45,152][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:48:45,152][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:48:45,160][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:48:45,161][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:48:45,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:48:45,162][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:48:45,162][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:48:45,162][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:48:45,174][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:48:45,174][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:48:45,175][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:45,175][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:48:45,175][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:48:45,175][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:48:45,208][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:48:45,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:48:45,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:48:45,325][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:48:45,325][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:48:45,325][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:48:45,325][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:48:45,326][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:48:45,326][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:48:45,326][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:22,415][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:49:22,415][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:49:22,415][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:49:22,415][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:49:22,416][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:49:22,416][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:49:22,416][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:49:23,013][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:23,013][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:23,013][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:23,013][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:23,016][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:23,016][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:23,016][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:23,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:23,016][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:23,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,018][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,019][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,019][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,019][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,192][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,192][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,192][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:23,193][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:23,194][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:23,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,194][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,194][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,504][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,504][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:23,505][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:23,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:23,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:23,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:23,505][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:23,505][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:23,506][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:23,506][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:23,514][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:23,515][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:23,515][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:23,515][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:23,515][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:23,531][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:23,531][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:23,532][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:23,532][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:23,532][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:23,532][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:23,532][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:23,532][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:23,533][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:23,533][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:23,533][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:23,533][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:23,533][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:23,564][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:23,565][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:23,565][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:23,684][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:23,684][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:23,685][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:23,685][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:30,602][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:49:30,602][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:49:30,602][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:49:30,602][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:49:30,603][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:49:30,603][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:49:30,603][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:49:31,286][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:31,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:31,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:31,286][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:31,291][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:31,292][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:31,293][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,294][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,294][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:31,295][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,296][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,296][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,297][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,297][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,297][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:31,298][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,299][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,299][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,494][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,495][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,495][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:31,496][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:31,497][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:31,498][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:31,499][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,499][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,788][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:31,788][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:31,788][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:31,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:31,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:31,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:31,789][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:31,789][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:31,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:31,791][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:31,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:31,791][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:31,791][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:31,799][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:31,800][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:31,800][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:31,800][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:31,800][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:31,801][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:31,801][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:31,816][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:31,816][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:31,817][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:31,817][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:31,817][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:31,818][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:31,818][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:31,818][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:31,859][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:31,859][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:31,859][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:32,011][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:32,012][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:32,012][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:32,012][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:32,013][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:49:32,415][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:49:32,415][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:49:32,988][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:32,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:32,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:32,988][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:32,992][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:32,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:32,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,995][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,996][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:32,996][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:32,997][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:32,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,263][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,263][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:33,264][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:33,264][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:33,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:33,265][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:33,266][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:33,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:33,614][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:33,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:33,615][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:33,616][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:33,616][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:33,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:33,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:33,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:33,617][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:33,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:33,618][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:33,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:33,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:33,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:33,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:33,628][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:33,628][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:33,628][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:33,642][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:33,642][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:33,642][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:33,643][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:33,643][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:33,643][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:33,643][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:33,643][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:33,644][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:33,644][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:33,644][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:33,644][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:33,687][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:33,687][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:33,687][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:33,856][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:33,856][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:33,856][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:33,856][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:33,857][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:33,857][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:33,857][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:33,858][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:33,858][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:34,611][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:34,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:34,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:34,611][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:34,619][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:34,619][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,620][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:34,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,623][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:34,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,624][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,624][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:34,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,625][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:34,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:34,628][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:34,628][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:34,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,628][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,628][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:34,898][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,898][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:34,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,899][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:34,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:34,901][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:34,902][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:34,902][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:34,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:34,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:34,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:35,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:35,223][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:35,223][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:35,223][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:35,223][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:35,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:35,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:35,224][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:35,224][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:35,225][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:35,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:35,233][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:35,234][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:35,234][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:35,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:35,235][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:35,235][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:35,249][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:35,249][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:35,250][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:35,250][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:35,250][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:35,250][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:35,250][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:35,251][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:35,251][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:35,251][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:35,251][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:35,251][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:35,251][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:35,289][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:35,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:35,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:35,415][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:35,415][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:35,415][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:35,415][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:35,416][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:35,416][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:35,416][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:35,417][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:35,417][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:49:36,321][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:49:36,321][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:49:36,861][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:36,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:36,861][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:36,861][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:36,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,866][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,866][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,867][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:36,867][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:36,868][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:36,868][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:37,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:37,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:37,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:37,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:37,052][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:37,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:37,264][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:37,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:37,265][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:37,265][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:37,265][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:37,265][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:37,265][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:37,266][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:37,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:37,273][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:37,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:37,274][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:37,274][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:37,274][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:37,283][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:37,284][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:37,284][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:37,285][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:37,285][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:37,285][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:37,285][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:37,312][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:37,312][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:37,312][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:37,422][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:37,422][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:37,423][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:37,423][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:49:58,576][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:49:58,576][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:49:58,576][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:49:58,576][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:49:58,577][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:49:58,577][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:49:58,577][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:49:59,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:59,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:59,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:59,122][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:49:59,124][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:49:59,124][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:49:59,124][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:49:59,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:59,125][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,126][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:59,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,127][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:59,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,128][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,128][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,287][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,287][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,288][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:49:59,288][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:49:59,289][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:49:59,589][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:59,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:49:59,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:49:59,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:49:59,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:59,590][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:59,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:49:59,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:49:59,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:49:59,600][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:49:59,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:49:59,600][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:49:59,601][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:49:59,601][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:49:59,614][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:49:59,614][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:49:59,615][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:49:59,615][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:49:59,615][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:49:59,615][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:49:59,615][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:49:59,616][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:49:59,617][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:59,617][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:49:59,617][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:49:59,618][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:49:59,618][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:49:59,668][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:49:59,668][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:49:59,668][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:49:59,828][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:49:59,828][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:49:59,828][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:49:59,828][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:49:59,829][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:49:59,829][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:49:59,829][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:49:59,829][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:49:59,829][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:49:59,829][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:49:59,829][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:49:59,830][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:50:19,675][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:50:19,676][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:50:19,676][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:50:19,676][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:50:19,676][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:50:19,676][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:50:19,676][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:50:20,215][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:20,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:20,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:20,215][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:20,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,219][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,220][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:20,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,221][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,221][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,387][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,387][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:50:20,387][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:20,388][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,388][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,655][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,656][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:50:20,656][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:50:20,656][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:50:20,656][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:50:20,657][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:50:20,657][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:20,657][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:20,657][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:20,658][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:20,658][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:50:20,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:20,658][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:20,658][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:20,664][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:20,665][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:20,665][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:50:20,665][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:50:20,665][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:50:20,666][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:50:20,666][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:50:20,675][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:50:20,676][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:50:20,676][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:50:20,677][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:20,677][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:50:20,677][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:50:20,677][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:50:20,706][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:50:20,707][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:20,707][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:50:20,821][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:20,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:50:20,822][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:50:20,822][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:50:29,242][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:50:29,242][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:50:29,243][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:50:29,243][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:50:29,243][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:50:29,243][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:50:29,243][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:50:29,780][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:29,780][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:29,780][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:29,780][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:29,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,785][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,785][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,786][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,786][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:29,787][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,787][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:29,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:29,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,962][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:29,963][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:29,964][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:29,964][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:30,245][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:30,246][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:30,246][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:50:30,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:30,247][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:30,247][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:30,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:50:30,248][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:50:30,248][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:50:30,248][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:50:30,248][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:50:30,249][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:30,249][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:30,249][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:50:30,250][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:30,251][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:30,251][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:30,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:30,263][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:30,263][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:50:30,263][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:50:30,263][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:50:30,264][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:50:30,264][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:50:30,264][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:50:30,264][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:50:30,264][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:50:30,265][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:50:30,281][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:50:30,281][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:50:30,281][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:50:30,281][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:50:30,281][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:50:30,282][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:50:30,282][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:50:30,282][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:50:30,283][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:30,283][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:50:30,283][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:50:30,283][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:50:30,314][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:50:30,314][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:30,314][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:30,426][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:50:30,427][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:50:30,427][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:50:30,427][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:50:30,428][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:50:30,428][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:50:30,428][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:50:30,428][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:50:30,428][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:50:36,341][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:50:36,341][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:50:36,846][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:36,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:36,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:36,846][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:36,849][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:36,850][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,851][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:36,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:36,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:36,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:37,036][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:37,036][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:37,037][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:50:37,037][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:37,038][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:37,038][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:37,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:37,269][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:50:37,269][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:50:37,269][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:50:37,269][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:50:37,270][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:50:37,270][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:37,270][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:37,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:37,270][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:50:37,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:37,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:37,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:37,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:37,277][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:37,278][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:37,278][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:50:37,278][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:50:37,278][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:50:37,279][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:50:37,279][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:50:37,289][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:50:37,289][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:50:37,290][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:37,290][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:50:37,290][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:50:37,290][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:50:37,319][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:50:37,319][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:37,319][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:50:37,430][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:37,430][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:50:37,431][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:50:37,431][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:50:52,868][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:50:52,868][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:50:52,868][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:50:52,868][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:50:52,869][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:50:52,869][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:50:52,869][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:50:53,415][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:53,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:53,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:53,415][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,419][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,419][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,420][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,421][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,584][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:50:53,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,585][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:50:53,585][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:53,586][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,586][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,841][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:50:53,842][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:50:53,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:50:53,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:50:53,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:53,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:53,843][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:53,843][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:53,843][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:53,844][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:53,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:53,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:50:53,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:53,854][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:50:53,854][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:50:53,854][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:50:53,865][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:50:53,865][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:50:53,866][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:50:53,866][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:50:53,866][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:50:53,866][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:50:53,866][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:50:53,866][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:50:53,867][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:50:53,867][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:50:53,868][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:53,868][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:50:53,868][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:50:53,868][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:50:53,922][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:50:53,922][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:53,922][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:54,078][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:50:54,078][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:50:54,079][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:54,079][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:50:54,079][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:50:54,080][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:50:54,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:54,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:54,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:54,672][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,676][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,677][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,678][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:54,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:54,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,679][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:54,857][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:54,857][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:54,858][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:50:54,859][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:54,859][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:55,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:55,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:50:55,098][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:50:55,098][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:50:55,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:50:55,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:50:55,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:55,099][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:55,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:50:55,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:50:55,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:50:55,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:50:55,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:50:55,108][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:50:55,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:50:55,109][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:50:55,109][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:50:55,110][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:50:55,110][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:50:55,120][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:50:55,121][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:50:55,121][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:50:55,122][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:55,122][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:50:55,122][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:50:55,122][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:50:55,152][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:50:55,152][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:50:55,152][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:50:55,268][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:50:55,268][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:50:55,268][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:50:55,269][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:53:04,267][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 11:53:04,268][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:04,269][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:04,269][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Not enough segments -[2026-02-18 11:53:04,269][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials -[2026-02-18 11:53:04,269][INFO][superset_tools_app] Response status: 401 for /api/environments -[2026-02-18 11:53:18,365][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:53:18,366][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:18,366][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:18,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:18,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:18,370][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:18,372][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:18,372][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:18,373][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:53:18,373][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:53:18,373][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:53:18,376][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:53:18,377][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:18,377][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:18,386][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-18 11:53:18,386][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 11:53:18,387][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:18,387][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:18,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:18,388][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:18,388][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:18,388][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:18,388][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:18,389][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:18,389][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:18,389][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:18,389][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:18,389][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:18,390][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:18,390][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-18 11:53:18,390][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:18,392][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-18 11:53:18,392][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-18 11:53:18,392][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-18 11:53:18,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:18,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:18,394][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 11:53:18,394][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 11:53:18,394][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 11:53:18,395][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 11:53:18,396][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:18,396][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:21,317][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-18 11:53:21,318][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:21,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:21,318][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:21,318][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:21,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:21,319][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:21,319][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-18 11:53:21,320][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:53:21,320][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:53:21,323][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-18 11:53:21,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:21,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:21,339][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 11:53:21,340][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:21,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:21,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:21,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:21,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:21,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:21,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:21,341][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 11:53:21,341][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 11:53:21,341][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 11:53:21,343][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 11:53:21,344][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:21,344][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:21,351][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 11:53:21,352][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:53:21,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:53:21,353][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:53:21,353][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:53:21,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:53:21,354][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:53:21,355][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:53:21,356][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 11:53:21,357][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 11:53:21,357][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 11:53:21,357][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:53:21,357][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:53:21,357][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 11:53:21,357][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 11:53:21,357][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 11:53:21,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:53:21,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:53:33,095][INFO][superset_tools_app] Incoming request: PATCH /api/settings/consolidated -[2026-02-18 11:53:33,095][INFO][superset_tools_app] Response status: 405 for /api/settings/consolidated -[2026-02-18 11:53:34,691][INFO][superset_tools_app] Incoming request: PATCH /api/settings/consolidated -[2026-02-18 11:53:34,692][INFO][superset_tools_app] Response status: 405 for /api/settings/consolidated -[2026-02-18 11:53:49,568][INFO][superset_tools_app] Incoming request: PATCH /api/settings/consolidated -[2026-02-18 11:53:49,568][INFO][superset_tools_app] Response status: 405 for /api/settings/consolidated -[2026-02-18 11:54:26,054][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:54:26,054][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:54:26,054][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:54:26,055][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:54:26,055][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:54:26,055][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:54:26,055][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:54:26,696][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:54:26,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:54:26,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:54:26,696][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:54:26,700][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,701][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,702][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,702][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:54:26,703][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,704][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,704][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:26,705][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,705][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:26,917][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:26,917][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,917][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:54:26,918][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:54:26,919][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:26,919][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:27,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:27,215][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:54:27,215][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:54:27,215][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:54:27,215][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:54:27,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:54:27,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:54:27,216][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:54:27,216][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:54:27,217][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:54:27,217][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:54:27,226][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:54:27,227][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:54:27,227][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:54:27,227][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:54:27,227][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:54:27,228][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:54:27,228][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:54:27,228][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:54:27,228][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:54:27,241][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:54:27,242][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:54:27,242][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:54:27,243][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:54:27,243][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:54:27,243][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:54:27,243][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:54:27,243][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:54:27,243][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:54:27,244][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:54:27,244][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:54:27,244][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:54:27,244][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:54:27,244][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:54:27,296][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:54:27,297][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:54:27,297][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:54:27,435][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:54:27,435][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:54:27,435][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:54:27,435][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:54:27,435][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:54:27,435][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:54:27,436][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:54:27,436][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:54:38,198][INFO][superset_tools_app] Incoming request: PATCH /api/settings/consolidated -[2026-02-18 11:54:38,199][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:54:38,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:54:38,205][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:54:38,205][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:54:38,205][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:54:38,207][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:54:38,207][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:54:38,211][DEBUG][superset_tools_app] [update_consolidated_settings][Entry] -[2026-02-18 11:54:38,211][INFO][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Entry] Applying consolidated settings patch -[2026-02-18 11:54:38,211][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 11:54:38,211][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [validate_path][Entry] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [validate_path][Action] [validate_path][Action] [validate_path][Action] [validate_path][Action] [validate_path][Coherence:OK] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [validate_path][Action] [validate_path][Action] [validate_path][Action] [validate_path][Action] [validate_path][Exit] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_global_settings][Entry] -[2026-02-18 11:54:38,212][INFO][superset_tools_app] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Entry] Updating settings -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Coherence:OK] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Action] [update_global_settings][Exit] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [save][Entry] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [save][Action] [save][Action] [save][Action] [save][Action] [_save_config_to_disk][Entry] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Entry] Saving to /home/busya/dev/ss-tools/config.json -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Coherence:OK] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Action] [_save_config_to_disk][Exit] -[2026-02-18 11:54:38,212][INFO][superset_tools_app] [save][Action] [save][Action] [save][Action] [save][Action] [_save_config_to_disk][Action] Configuration saved -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [save][Action] [save][Action] [save][Action] [save][Action] [save][Coherence:OK] -[2026-02-18 11:54:38,212][DEBUG][superset_tools_app] [save][Action] [save][Action] [save][Action] [save][Action] [save][Exit] -[2026-02-18 11:54:38,213][INFO][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_global_settings][Exit] Settings updated -[2026-02-18 11:54:38,213][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Coherence:OK] -[2026-02-18 11:54:38,213][DEBUG][superset_tools_app] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Action] [update_consolidated_settings][Exit] -[2026-02-18 11:54:38,213][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 11:54:38,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:54:38,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:58:32,880][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:58:32,881][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:58:32,881][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:58:32,881][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:58:32,881][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:58:32,881][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:58:32,881][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:58:33,507][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:58:33,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:33,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:33,507][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:58:33,511][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:58:33,511][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:58:33,511][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:58:33,511][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,513][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,514][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:33,514][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:33,515][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,515][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:33,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:33,766][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:33,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:58:33,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,767][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,767][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:58:33,768][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:58:33,769][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:58:33,769][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:33,770][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:33,770][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:34,096][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:34,097][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:58:34,097][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:58:34,097][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:58:34,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:58:34,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:58:34,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:34,098][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:34,098][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:58:34,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:34,099][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:34,110][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:34,111][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:34,111][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:58:34,111][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:58:34,111][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:58:34,112][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:58:34,112][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:58:34,127][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:58:34,127][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:58:34,128][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:34,128][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:58:34,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:58:34,128][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:58:34,174][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:58:34,175][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:34,175][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:34,408][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:58:34,408][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:58:34,408][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:58:34,408][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:58:34,409][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:58:34,409][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:58:34,409][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:58:34,409][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:34,409][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:34,409][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:58:34,410][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:58:34,410][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:58:34,410][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:58:34,410][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:58:34,410][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:58:34,410][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:58:34,411][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:58:35,702][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 11:58:35,704][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 11:58:35,706][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 11:58:35,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 11:58:35,710][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 11:58:35,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 11:58:35,714][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 11:58:35,714][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 11:58:35,720][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 11:58:35,720][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 11:58:35,720][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 11:58:35,721][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:35,721][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:35,721][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 11:58:35,721][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 11:58:35,721][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 11:58:35,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 11:58:35,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 11:58:37,119][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 11:58:37,119][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 11:58:37,719][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:58:37,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:37,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:37,719][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,723][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,724][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,724][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,725][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:37,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:37,726][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:37,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:37,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,899][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:58:37,900][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 11:58:37,901][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:37,901][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:38,191][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:38,192][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:38,193][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:38,194][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:38,194][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 11:58:38,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:38,195][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:38,195][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:38,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 11:58:38,196][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 11:58:38,196][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:58:38,196][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:38,196][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:38,196][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 11:58:38,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 11:58:38,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 11:58:38,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:38,197][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 11:58:38,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 11:58:38,198][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 11:58:38,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 11:58:38,199][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 11:58:38,211][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 11:58:38,212][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:58:38,212][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 11:58:38,212][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 11:58:38,212][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 11:58:38,213][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 11:58:38,213][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 11:58:38,229][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 11:58:38,230][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 11:58:38,230][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 11:58:38,231][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 11:58:38,231][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 11:58:38,231][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:38,232][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 11:58:38,232][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 11:58:38,233][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 11:58:38,288][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 11:58:38,288][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 11:58:38,288][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 11:58:38,460][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 11:58:38,460][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 11:58:38,460][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 11:58:38,460][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 11:58:38,461][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 11:58:38,461][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 11:58:38,461][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 11:59:50,531][INFO][superset_tools_app] Incoming request: POST /api/settings/environments/ss1/test -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [test_environment_connection][Entry] -[2026-02-18 11:59:50,533][INFO][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Entry] Testing environment ss1 -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Coherence:OK] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Exit] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:59:50,533][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:59:50,533][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:59:50,533][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:59:50,534][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 11:59:50,534][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 11:59:50,534][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 11:59:50,540][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [get_dashboards][Entry] -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 11:59:50,540][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 11:59:50,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 11:59:52,529][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 11:59:52,529][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 11:59:52,529][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 11:59:52,529][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:52,529][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 11:59:53,373][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:53,374][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:53,757][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:53,757][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:53,758][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:53,758][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:53,758][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:53,758][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:54,238][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:54,649][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:54,952][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:55,124][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:55,305][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:55,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:55,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:55,821][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:56,044][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:56,208][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:56,366][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:56,555][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 11:59:56,555][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 11:59:56,555][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 11:59:56,556][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 11:59:56,556][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 11:59:56,556][INFO][superset_tools_app] [test_environment_connection][Coherence:OK] Connection successful for ss1 -[2026-02-18 11:59:56,557][INFO][superset_tools_app] Response status: 200 for /api/settings/environments/ss1/test -[2026-02-18 11:59:56,558][INFO][superset_tools_app] Incoming request: POST /api/settings/environments/ss2/test -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [test_environment_connection][Entry] -[2026-02-18 11:59:56,558][INFO][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Entry] Testing environment ss2 -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Coherence:OK] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Action] [test_environment_connection][Exit] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:59:56,558][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:59:56,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 11:59:56,559][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 11:59:56,559][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 11:59:56,563][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 11:59:56,563][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 11:59:56,563][DEBUG][superset_tools_app] [get_dashboards][Entry] -[2026-02-18 11:59:56,563][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 11:59:56,563][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 11:59:56,563][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 11:59:56,564][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 11:59:56,564][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 11:59:56,564][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 11:59:56,564][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 11:59:58,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 11:59:58,350][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 11:59:58,350][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 11:59:58,350][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:58,350][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:59,230][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 11:59:59,741][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 11:59:59,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 11:59:59,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 11:59:59,741][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 11:59:59,741][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 11:59:59,742][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:00,153][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:00,153][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:00,153][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:00,153][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:00,154][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:00,154][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:00,426][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:00,812][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:00,812][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:00,812][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:00,812][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:00,812][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:00,813][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:01,124][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:01,125][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:01,125][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:01,125][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:01,125][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:01,125][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:01,461][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:01,787][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:01,788][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:01,788][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:01,788][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:01,788][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:01,788][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:06,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:06,836][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:06,836][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:06,836][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:06,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:06,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:07,045][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:07,251][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:00:07,439][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:00:07,763][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:00:07,763][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:00:07,763][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 12 dashboards. -[2026-02-18 12:00:07,763][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:00:07,763][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:00:07,763][INFO][superset_tools_app] [test_environment_connection][Coherence:OK] Connection successful for ss2 -[2026-02-18 12:00:07,764][INFO][superset_tools_app] Response status: 200 for /api/settings/environments/ss2/test -[2026-02-18 12:00:10,512][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:00:10,513][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:00:10,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:00:10,516][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:00:10,516][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:00:10,516][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:00:10,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:00:10,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:00:10,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:00:10,524][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:00:10,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:00:10,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:00:55,644][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 12:00:55,645][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:00:55,646][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:00:55,646][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:00:55,646][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:00:55,646][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:00:55,647][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:00:55,647][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:00:55,651][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 12:00:55,652][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 12:00:55,652][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 12:00:55,652][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:00:55,652][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:00:55,653][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 12:00:55,653][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 12:00:55,653][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 12:00:55,654][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:00:55,654][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:01:02,581][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:01:02,581][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:01:03,172][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:01:03,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:01:03,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:01:03,172][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:03,176][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,177][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,177][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,179][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,179][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,385][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,385][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,385][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,385][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,385][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,386][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,386][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:01:03,386][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:01:03,387][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,387][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:01:03,624][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,625][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,625][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:01:03,626][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:01:03,626][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:01:03,626][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:01:03,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:01:03,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:01:03,627][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:01:03,627][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:01:03,628][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:01:03,628][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:01:03,637][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:01:03,638][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:01:03,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:01:03,638][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:01:03,639][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:01:03,639][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:01:03,650][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:01:03,650][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:01:03,651][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:01:03,651][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:01:03,651][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:01:03,652][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:01:03,688][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:01:03,688][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:01:03,688][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:01:03,813][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:01:03,813][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:01:03,813][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:01:03,813][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:01:03,814][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:01:03,814][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:01:03,814][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:01:24,937][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-18 12:01:24,938][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:24,938][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:24,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:24,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:24,941][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:24,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:24,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-18 12:01:24,948][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:24,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:24,949][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-18 12:01:24,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:24,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:24,962][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:01:24,963][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:24,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:24,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:24,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:24,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:24,966][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:24,966][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:24,966][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:01:24,966][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:01:24,966][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:01:24,967][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:01:24,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:24,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:24,987][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 12:01:24,989][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:24,989][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:24,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:24,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:24,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:24,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:24,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:24,992][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 12:01:24,992][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 12:01:24,992][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 12:01:24,992][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:24,992][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:24,992][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] -[2026-02-18 12:01:24,994][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] -[2026-02-18 12:01:24,994][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] -[2026-02-18 12:01:24,994][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 12:01:24,994][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 12:01:24,994][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 12:01:24,996][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:24,996][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:30,477][INFO][superset_tools_app] Incoming request: POST /api/llm/providers/6c899741-4108-4196-aea4-f38ad2f0150e/test -[2026-02-18 12:01:30,478][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:30,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:30,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:30,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:30,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:30,480][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:30,480][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:30,481][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] -[2026-02-18 12:01:30,481][INFO][superset_tools_app] [llm_routes][test_connection][Action] Testing connection for provider_id: 6c899741-4108-4196-aea4-f38ad2f0150e -[2026-02-18 12:01:30,481][DEBUG][superset_tools_app] [get_provider][Entry] -[2026-02-18 12:01:30,482][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] -[2026-02-18 12:01:30,482][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] -[2026-02-18 12:01:30,482][DEBUG][superset_tools_app] [get_decrypted_api_key][Entry] -[2026-02-18 12:01:30,483][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] -[2026-02-18 12:01:30,483][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] -[2026-02-18 12:01:30,483][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] -[2026-02-18 12:01:30,483][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e -[2026-02-18 12:01:30,483][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 -[2026-02-18 12:01:30,485][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] -[2026-02-18 12:01:30,485][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] Initializing LLM client: -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... -[2026-02-18 12:01:30,485][INFO][superset_tools_app] [LLMClient.__init__] API Key Length: 8 -[2026-02-18 12:01:31,164][INFO][superset_tools_app] Response status: 200 for /api/llm/providers/6c899741-4108-4196-aea4-f38ad2f0150e/test -[2026-02-18 12:01:31,164][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 12:01:31,165][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 12:01:31,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:31,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:33,157][INFO][superset_tools_app] Incoming request: PUT /api/llm/providers/6c899741-4108-4196-aea4-f38ad2f0150e -[2026-02-18 12:01:33,158][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:33,158][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:33,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:33,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:33,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:33,160][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:33,160][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:33,160][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] -[2026-02-18 12:01:33,160][DEBUG][superset_tools_app] [update_provider][Entry] -[2026-02-18 12:01:33,160][DEBUG][superset_tools_app] [update_provider][Action] [update_provider][Action] [update_provider][Action] [update_provider][Action] [get_provider][Entry] -[2026-02-18 12:01:33,161][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] -[2026-02-18 12:01:33,161][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] -[2026-02-18 12:01:33,162][DEBUG][superset_tools_app] [update_provider][Action] [update_provider][Action] [update_provider][Action] [update_provider][Action] [update_provider][Coherence:OK] -[2026-02-18 12:01:33,162][DEBUG][superset_tools_app] [update_provider][Action] [update_provider][Action] [update_provider][Action] [update_provider][Action] [update_provider][Exit] -[2026-02-18 12:01:33,162][INFO][superset_tools_app] Response status: 200 for /api/llm/providers/6c899741-4108-4196-aea4-f38ad2f0150e -[2026-02-18 12:01:33,163][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 12:01:33,163][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 12:01:33,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:33,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:33,171][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 12:01:33,172][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:33,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:33,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:33,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:33,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:33,175][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:33,175][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:33,176][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 12:01:33,176][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 12:01:33,176][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 12:01:33,176][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:01:33,176][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:01:33,177][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] -[2026-02-18 12:01:33,177][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] -[2026-02-18 12:01:33,177][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] -[2026-02-18 12:01:33,178][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 12:01:33,178][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 12:01:33,178][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 12:01:33,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:33,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:37,115][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:01:37,117][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:37,117][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:37,117][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:37,117][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:37,117][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:37,119][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:37,119][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:37,119][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:01:37,119][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:01:37,119][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:01:37,121][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:01:37,123][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:37,125][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:37,140][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:01:37,141][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:37,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:37,141][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:37,142][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:37,142][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:37,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:37,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:37,143][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:37,143][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:01:37,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:37,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:37,144][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:37,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:37,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:37,144][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:01:37,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:37,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:37,154][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:01:37,155][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:01:37,155][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:01:44,425][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:01:44,425][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:44,425][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:44,426][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:44,426][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:44,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:44,426][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:44,427][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:44,427][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:01:44,427][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:01:44,427][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:01:44,430][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:01:44,430][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:44,430][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:44,442][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:01:44,442][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:44,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:44,443][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:44,443][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:44,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:44,445][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:44,445][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:44,446][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:44,446][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:01:44,446][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:44,446][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:44,447][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:44,447][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:44,447][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:44,447][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:01:44,447][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:44,448][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:44,453][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:01:44,454][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:01:44,454][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:01:52,016][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:01:52,017][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:52,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:52,018][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:52,018][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:52,018][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:52,020][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:52,020][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:52,020][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:01:52,020][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:01:52,020][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:01:52,021][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:01:52,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:52,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:52,033][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:01:52,034][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:01:52,034][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:01:52,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:01:52,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:01:52,034][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:01:52,035][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:01:52,035][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:52,036][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:01:52,036][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:01:52,036][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:01:52,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:01:52,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:01:52,043][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:01:52,043][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:01:52,043][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:02:20,537][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:20,537][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:20,537][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:20,537][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:20,538][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:20,538][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:20,538][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:21,144][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:21,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:21,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:21,144][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:21,147][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:21,147][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:21,147][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:21,148][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,149][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,149][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,149][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,315][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,315][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:21,316][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:21,317][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:21,591][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:21,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:21,592][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:21,592][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:21,592][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:21,592][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:21,593][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:21,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:21,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:21,602][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:21,602][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:21,602][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:21,602][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:21,603][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:21,603][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:21,603][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:21,603][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:21,603][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:21,621][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:21,621][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:21,623][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:21,623][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:21,624][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:21,624][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:21,624][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:21,624][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:21,676][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:21,676][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:21,676][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:21,820][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:21,820][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:21,820][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:21,820][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:21,821][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:21,821][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:21,821][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:22,411][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:22,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:22,411][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:22,411][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:22,415][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,416][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,416][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,417][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,417][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,418][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,418][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:22,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,419][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,419][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:22,590][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:22,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:22,837][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:22,837][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:22,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:22,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:22,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:22,838][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:22,838][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:22,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:22,840][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:22,840][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:22,840][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:22,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:22,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:22,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:22,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:22,850][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:22,850][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:22,850][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:22,850][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:22,851][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:22,851][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:22,867][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:22,868][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:22,868][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:22,870][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:22,870][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:22,870][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:22,870][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:22,925][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:22,925][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:22,925][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:23,088][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:23,088][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:23,088][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:23,088][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:23,089][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:23,089][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:23,089][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:23,391][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:23,391][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:23,391][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:23,391][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:23,391][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:23,392][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:23,392][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:23,903][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:23,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:23,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:23,903][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:23,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,907][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:23,907][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,908][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:23,908][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:23,909][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:23,909][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:24,081][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:24,081][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:24,081][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:24,082][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:24,083][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:24,083][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:24,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,332][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:24,333][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:24,334][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:24,334][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:24,334][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:24,334][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:24,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:24,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:24,335][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:24,335][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:24,336][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:24,336][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:24,344][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:24,345][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:24,345][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:24,345][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:24,345][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:24,355][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:24,355][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:24,356][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:24,356][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:24,356][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:24,357][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:24,387][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:24,387][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:24,387][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:24,504][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:24,504][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:24,505][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:24,505][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:30,619][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:30,619][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:31,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:31,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:31,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:31,112][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,116][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,118][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,119][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,119][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:31,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,121][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,375][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,375][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,375][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:31,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:31,377][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,667][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,668][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:31,668][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:31,668][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:31,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:31,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:31,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:31,669][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:31,669][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:31,670][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:31,670][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:31,678][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:31,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:31,679][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:31,679][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:31,679][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:31,680][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:31,680][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:31,680][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:31,680][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:31,693][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:31,693][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:31,694][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:31,694][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:31,694][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:31,694][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:31,695][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:31,695][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:31,695][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:31,695][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:31,695][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:31,695][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:31,695][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:31,737][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:31,737][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:31,737][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:31,864][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:31,864][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:31,864][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:31,864][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:31,865][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:31,865][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:31,865][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:32,360][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:32,360][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:32,360][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:32,360][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:32,362][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:32,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,364][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:32,364][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,365][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,366][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,366][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,556][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,556][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,556][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:32,557][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:32,558][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,558][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,791][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,791][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:32,792][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:32,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:32,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:32,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:32,792][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,792][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:32,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:32,793][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:32,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:32,801][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:32,801][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:32,801][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:32,801][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:32,811][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:32,811][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:32,812][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:32,812][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:32,812][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:32,812][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:32,840][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:32,840][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:32,840][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:32,953][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:32,953][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:32,954][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:32,954][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:37,665][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:37,665][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:38,162][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:38,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:38,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:38,162][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,165][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,166][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,167][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:38,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,168][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:38,168][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,169][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,348][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:38,350][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:38,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,640][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:38,641][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:38,641][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:38,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:38,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:38,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:38,642][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:38,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:38,643][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:38,643][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:38,652][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:38,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:38,653][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:38,653][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:38,653][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:38,665][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:38,665][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:38,666][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:38,666][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:38,667][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:38,667][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:38,667][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:38,667][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:38,705][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:38,705][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:38,705][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:38,849][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:38,849][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:38,849][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:38,849][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:38,849][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:38,850][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:38,850][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:39,152][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:39,152][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:39,658][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:39,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:39,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:39,658][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,661][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:39,662][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,663][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,664][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:39,665][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,665][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:39,876][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:39,876][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:39,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:39,877][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:39,877][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:39,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:39,878][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:39,878][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:40,134][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:40,134][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:40,135][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:40,135][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:40,135][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:40,135][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:40,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:40,136][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:40,136][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:40,136][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:40,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:40,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:40,145][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:40,145][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:40,145][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:40,156][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:40,156][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:40,157][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:40,157][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:40,157][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:40,157][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:40,157][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:40,157][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:40,158][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:40,158][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:40,158][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:40,158][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:40,158][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:40,190][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:40,190][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:40,190][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:40,307][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:40,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:40,308][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:40,308][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:45,821][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:45,821][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:46,298][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:46,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:46,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:46,298][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:46,301][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,302][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:46,302][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,303][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,303][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:46,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,304][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,304][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,493][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:46,494][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:46,495][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,791][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:46,792][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:46,792][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:46,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:46,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:46,793][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:46,793][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:46,793][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:46,794][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:46,794][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:46,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:46,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:46,805][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:46,805][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:46,805][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:46,819][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:46,819][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:46,820][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:46,820][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:46,820][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:46,821][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:46,855][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:46,855][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:46,855][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:46,995][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:46,995][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:46,995][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:46,995][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:46,996][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:46,996][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:46,996][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:46,997][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:46,997][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:46,997][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:47,502][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:47,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:47,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:47,502][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,505][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,506][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,507][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,507][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,508][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,508][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,670][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,670][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,670][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:47,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:47,953][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,954][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:47,954][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:47,954][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:47,955][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:47,955][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:47,955][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:47,955][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:47,955][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:47,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:47,956][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:47,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:47,957][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:47,957][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:47,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:47,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:47,971][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:47,971][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:47,971][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:47,971][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:47,986][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:47,986][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:47,987][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:47,987][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:47,987][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:47,987][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:47,987][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:47,987][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:47,988][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:47,988][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:47,988][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:47,988][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:47,988][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:47,988][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:48,021][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:48,021][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:48,021][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:48,146][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:48,146][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:48,146][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:48,146][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:48,147][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:48,147][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:48,147][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:48,677][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:48,677][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,680][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,681][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:48,681][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,682][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:48,682][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:48,683][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,683][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:48,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,848][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,848][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:48,848][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:48,849][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:48,849][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:48,849][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:48,850][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:48,850][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:49,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:49,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:49,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:49,104][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:49,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:49,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:49,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:49,104][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:49,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:49,105][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:49,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:49,113][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:49,114][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:49,114][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:49,114][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:49,114][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:49,115][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:49,115][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:49,125][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:49,125][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:49,126][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:49,126][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:49,126][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:49,126][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:49,160][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:49,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:49,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:49,280][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:49,280][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:49,280][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:49,281][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:02:57,600][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:02:57,600][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:02:58,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:58,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:58,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:58,121][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:02:58,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,125][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,126][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,126][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,127][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,300][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,300][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,301][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,301][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:02:58,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,301][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,301][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:02:58,302][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:02:58,303][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,303][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:58,549][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,550][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:02:58,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:02:58,552][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:02:58,552][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:58,552][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:58,552][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:58,552][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:02:58,552][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:02:58,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:02:58,553][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:02:58,553][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:02:58,553][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:02:58,553][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:02:58,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:58,554][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:02:58,555][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:02:58,556][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:02:58,556][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,564][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:02:58,565][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:02:58,565][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:02:58,565][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:02:58,565][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:02:58,577][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:02:58,578][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:02:58,578][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:02:58,578][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:02:58,578][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:02:58,578][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:02:58,578][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:02:58,579][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:02:58,579][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:58,579][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:58,579][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:02:58,579][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:02:58,579][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:02:58,579][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:02:58,610][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:02:58,610][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:02:58,610][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:02:58,724][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:02:58,724][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:02:58,724][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:02:58,724][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:02:58,725][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:02:58,725][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:02:58,725][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:07:57,740][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:07:57,741][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:07:57,742][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:07:57,744][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:07:57,744][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:07:57,744][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:07:57,746][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:07:57,746][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:07:57,746][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:07:57,746][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:07:57,747][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:07:57,749][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:07:57,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:07:57,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:07:57,765][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:07:57,766][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:07:57,766][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:07:57,766][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:07:57,766][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:07:57,766][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:07:57,767][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:07:57,767][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:07:57,768][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:07:57,768][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:07:57,768][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:07:57,769][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:07:57,769][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:07:57,780][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:07:57,781][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:07:57,781][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:07:59,243][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:07:59,244][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:07:59,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:07:59,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:07:59,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:07:59,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:07:59,245][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:07:59,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:07:59,246][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:07:59,246][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:07:59,247][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:07:59,248][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:07:59,249][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:07:59,249][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:07:59,262][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:07:59,262][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:07:59,263][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:07:59,263][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:07:59,263][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:07:59,263][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:07:59,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:07:59,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:07:59,265][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:07:59,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:07:59,265][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:07:59,266][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:07:59,266][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:07:59,279][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:07:59,279][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:07:59,279][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:08:00,197][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:00,198][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:00,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:00,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:00,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:00,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:00,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:00,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:00,199][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:00,199][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:00,199][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:00,200][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:00,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:00,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:00,213][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:00,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:00,215][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:00,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:00,216][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:08:00,216][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:00,216][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:00,226][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:08:00,227][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:08:00,227][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:08:02,345][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:02,346][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:02,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:02,346][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:02,346][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:02,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:02,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:02,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:02,347][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:02,347][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:02,347][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:02,348][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:02,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:02,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:02,360][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:08:02,361][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:02,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:02,361][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:02,361][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:02,361][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:02,362][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:02,362][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:02,363][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:02,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:02,363][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:08:02,364][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:02,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:02,371][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:08:02,372][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:08:02,373][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:08:04,158][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:04,158][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:04,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:04,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:04,159][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:04,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:04,161][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:04,161][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:04,161][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:04,161][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:04,161][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:04,163][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:04,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:04,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:04,181][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:08:04,181][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:04,182][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:04,182][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:04,183][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:04,183][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:04,183][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:04,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:04,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:04,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:04,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:04,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:04,186][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:04,186][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:04,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:04,188][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:08:04,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:04,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:04,191][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:04,191][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:04,191][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:04,192][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:04,192][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:04,193][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:04,193][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:04,193][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:06,835][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:06,837][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:06,837][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:06,837][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:06,837][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:06,837][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:06,838][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:06,838][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:06,838][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:06,838][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:06,839][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:06,839][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:06,840][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:06,840][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:06,853][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:08:06,853][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:06,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:06,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:06,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:06,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:06,854][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:06,855][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:06,855][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:06,855][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:08:06,855][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:06,855][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:06,856][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:06,856][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:06,856][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:08:06,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:06,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:06,863][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards -[2026-02-18 12:08:06,865][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:06,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:06,865][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:06,865][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:06,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:06,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:06,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:08:06,867][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:08:06,867][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:08:06,868][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:08:06,868][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:08:06,874][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:08:06,875][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:08:06,875][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:08:08,191][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:08:08,191][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:08:08,191][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:08:08,191][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:08:08,191][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:08:09,200][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:08:09,959][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:08:09,959][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:08:09,961][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards -[2026-02-18 12:08:09,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:09,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:14,960][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:14,961][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:14,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:14,961][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:14,961][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:14,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:14,962][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:14,962][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:14,962][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:14,962][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:14,962][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:14,963][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:14,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:14,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:14,976][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:08:14,977][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:14,978][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:14,978][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:14,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:14,980][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:14,980][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:14,980][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:14,981][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:14,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:14,983][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:14,983][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:14,984][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:14,984][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:08:14,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:14,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:14,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:14,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:17,277][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:17,278][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:17,278][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:17,278][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:17,279][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:17,279][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:17,279][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:17,280][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:17,282][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:17,283][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:17,283][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:17,283][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:17,283][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:17,283][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:17,283][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:17,284][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:17,285][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:17,285][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:17,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:17,286][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:17,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:17,287][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:17,287][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:17,287][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:17,287][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:17,288][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:17,290][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:17,291][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] -[2026-02-18 12:08:17,291][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 -[2026-02-18 12:08:17,292][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:17,292][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:17,293][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:17,293][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:17,293][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:17,294][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:17,294][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:17,296][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:17,297][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:17,298][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:17,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:17,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:17,298][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:17,298][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:17,299][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:17,300][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:17,301][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] -[2026-02-18 12:08:17,301][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:17,302][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:17,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:22,933][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:22,934][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:22,934][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:22,934][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:22,934][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:22,934][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:22,935][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:22,936][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:22,937][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:22,938][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] -[2026-02-18 12:08:22,938][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard -[2026-02-18 12:08:22,939][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:22,939][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:22,939][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:22,939][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:22,939][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:22,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:22,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:22,942][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:22,943][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:22,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:22,943][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:22,944][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:22,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:22,945][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:22,945][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:22,946][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:22,946][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:22,947][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] -[2026-02-18 12:08:22,947][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard -[2026-02-18 12:08:22,948][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:22,948][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:22,948][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:22,948][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:22,948][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:22,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:22,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:27,497][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:27,500][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:27,501][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:27,501][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:27,501][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:27,501][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:27,501][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:27,502][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:27,503][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:27,503][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:27,504][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:27,504][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:27,504][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:27,504][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:27,505][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:27,505][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:27,507][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:27,508][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:27,508][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:27,508][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:27,508][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:27,508][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:27,509][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:27,509][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:27,510][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:27,510][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:27,510][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:27,511][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:27,511][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:27,512][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:27,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:27,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:27,936][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:27,936][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:27,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:27,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:27,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:27,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:27,940][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:27,940][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:27,941][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:27,941][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:27,941][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:27,941][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:27,942][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:27,942][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:27,942][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:27,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:27,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:28,513][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:28,513][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:28,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:28,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:28,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:28,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:28,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:28,516][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:28,518][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.REPOSITORY, subpath: None -[2026-02-18 12:08:28,518][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:08:28,519][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:28,519][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:28,519][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:28,519][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:28,519][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:28,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:28,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:30,506][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:30,508][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:30,509][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:30,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:30,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:30,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:30,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:30,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:30,511][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:30,511][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:30,511][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:30,512][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:30,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:30,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:30,529][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:08:30,530][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:30,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:30,530][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:30,530][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:30,531][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:30,531][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:30,532][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:30,544][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:30,545][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:08:30,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:30,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:30,551][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards -[2026-02-18 12:08:30,551][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:30,551][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:30,551][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:30,552][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:30,552][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:30,552][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:30,552][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:08:30,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:08:30,554][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:08:30,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:08:30,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:08:30,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:08:30,555][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:08:30,555][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:08:30,555][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:08:30,559][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 12:08:30,559][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:08:30,559][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:08:30,559][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:08:30,560][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:08:30,560][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:08:30,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:08:30,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:08:30,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:08:32,337][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:08:32,338][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:08:32,338][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:08:32,338][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:08:32,338][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:08:33,403][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:08:34,235][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:08:34,235][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:08:34,236][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards -[2026-02-18 12:08:34,237][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:34,238][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:34,238][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:34,238][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:34,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:34,239][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:34,239][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:34,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:34,240][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:34,240][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:34,240][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:34,240][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:34,241][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:34,241][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:34,242][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:34,242][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:34,260][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:08:34,260][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:34,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:34,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:34,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:34,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:34,263][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:34,263][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:34,263][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:34,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:34,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:08:34,266][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:08:34,266][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:34,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:34,267][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:08:34,267][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:08:34,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:34,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:34,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:34,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:35,974][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:08:35,974][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:35,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:35,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:35,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:35,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:35,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:35,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:35,976][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:08:35,976][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:08:35,976][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:08:35,977][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:08:35,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:35,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:35,992][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:08:35,992][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:08:35,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:08:35,992][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:08:35,993][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:08:35,993][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:08:35,993][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:08:35,994][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:35,995][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:08:35,995][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:08:35,995][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:08:35,996][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:08:35,996][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:08:36,003][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:08:36,003][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:08:36,003][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:15,429][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:09:15,429][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:09:15,429][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:09:15,429][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:09:15,430][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:09:15,430][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:09:15,430][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:09:16,024][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:16,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:16,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:16,024][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:09:16,029][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:09:16,029][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:09:16,029][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:09:16,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:16,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,031][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:09:16,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:16,032][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:16,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,035][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,245][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,245][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,246][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,246][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:09:16,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:16,247][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,247][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,525][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,525][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:09:16,526][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:09:16,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:09:16,526][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:09:16,527][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:09:16,527][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:16,527][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,527][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:16,528][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:16,529][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:16,529][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:09:16,529][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:16,529][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:16,529][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:16,540][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:16,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:16,542][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:16,542][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:09:16,542][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:09:16,542][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:09:16,543][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:09:16,543][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:09:16,558][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:09:16,559][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:09:16,559][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:09:16,560][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:09:16,560][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:09:16,560][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:09:16,560][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:09:16,560][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:16,561][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:16,561][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:16,561][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:09:16,561][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:09:16,561][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:09:16,561][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:09:16,611][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:09:16,612][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:16,612][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:09:16,795][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:09:16,795][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:09:16,796][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:09:16,796][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:09:17,199][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:09:17,199][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:09:17,722][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:17,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:17,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:17,722][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,727][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,728][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,728][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,729][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,729][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:17,730][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:09:17,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:17,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:17,963][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:17,963][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,963][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:09:17,965][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:17,966][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:17,967][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:17,967][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:09:17,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:17,967][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:17,967][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:18,265][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:18,266][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:18,267][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:18,267][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:09:18,268][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:09:18,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:09:18,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:09:18,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:09:18,269][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:18,269][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:09:18,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:18,270][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:18,270][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:18,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:18,279][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:18,279][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:09:18,279][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:09:18,279][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:09:18,292][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:09:18,292][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:09:18,293][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:18,293][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:09:18,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:09:18,294][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:09:18,336][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:09:18,336][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:18,336][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:18,492][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:09:18,492][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:09:18,492][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:09:18,493][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:18,493][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:09:18,494][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:09:18,494][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:09:19,079][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:19,080][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:19,080][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:19,080][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:09:19,084][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:09:19,085][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,085][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,085][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:19,086][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,087][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,087][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,088][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,088][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,089][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,328][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,329][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,329][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,329][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:19,330][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:19,331][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,331][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,596][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,596][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:09:19,597][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:09:19,597][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:09:19,597][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:09:19,597][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:09:19,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:19,598][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:19,598][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:19,599][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:09:19,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:19,599][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:19,599][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:19,609][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:19,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:19,610][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:09:19,610][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:09:19,610][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:09:19,624][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:09:19,625][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:09:19,625][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:09:19,627][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:19,627][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:09:19,627][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:09:19,627][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:09:19,668][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:09:19,668][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:19,668][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:19,798][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:09:19,798][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:09:19,798][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:09:19,798][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:09:19,799][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:09:19,799][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:09:19,799][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:09:19,800][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:09:19,800][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:09:19,800][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:09:19,800][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:09:19,800][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:09:27,648][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:09:27,649][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:09:27,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:09:27,654][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:09:27,655][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:09:27,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:09:27,657][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:09:27,657][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:09:27,657][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:09:27,658][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:09:27,658][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:09:27,661][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:09:27,662][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:09:27,662][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:09:27,678][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:09:27,679][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:09:27,679][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:09:27,679][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:09:27,679][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:09:27,679][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:09:27,680][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:09:27,680][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:09:27,681][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:09:27,682][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:09:27,682][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:27,682][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:27,682][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:09:27,682][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:27,682][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:27,682][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:09:27,683][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:09:27,683][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:09:27,693][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:27,694][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:27,695][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:28,757][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:28,758][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:28,758][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:29,163][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:29,164][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:29,165][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:29,376][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:29,376][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:29,377][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:29,556][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:29,557][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:29,557][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:29,718][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:29,718][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:29,718][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:29,875][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:29,876][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:29,876][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,029][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,029][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,030][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,190][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,191][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,191][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,355][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,355][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,356][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,533][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,534][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,534][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,700][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,700][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,700][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:30,861][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:30,863][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:30,863][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:31,023][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:31,023][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:31,023][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:31,187][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:31,188][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:31,189][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:09:49,274][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:09:49,274][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:09:49,274][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:09:49,275][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:09:49,275][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:09:49,275][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:09:49,275][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:09:55,934][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:55,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:55,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:55,934][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:55,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:55,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,943][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:55,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:55,945][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:55,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:56,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:56,113][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:09:56,113][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:09:56,114][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:56,114][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:56,342][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:56,343][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:09:56,343][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:09:56,343][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:09:56,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:09:56,344][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:09:56,344][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:56,344][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:09:56,344][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:09:56,345][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:09:56,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:09:56,355][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:09:56,356][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:09:56,356][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:09:56,356][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:09:56,356][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:09:56,367][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:09:56,367][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:09:56,368][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:09:56,368][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:09:56,368][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:09:56,368][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:09:56,368][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:09:56,368][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:56,369][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:56,369][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:09:56,369][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:09:56,369][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:09:56,369][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:09:56,401][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:09:56,401][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:09:56,401][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:09:56,507][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:09:56,507][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:09:56,507][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:09:56,507][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:09:56,508][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:09:56,508][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:09:56,508][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:09:59,856][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:09:59,858][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:09:59,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:09:59,863][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:09:59,864][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:09:59,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:09:59,868][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:09:59,869][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:09:59,869][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:09:59,869][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:09:59,869][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:09:59,877][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:09:59,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:09:59,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:09:59,901][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:09:59,902][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:09:59,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:09:59,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:09:59,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:09:59,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:09:59,906][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:09:59,906][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:09:59,907][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:09:59,907][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:09:59,907][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:09:59,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:09:59,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:09:59,916][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:09:59,917][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:09:59,918][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:10:07,627][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 12:10:07,629][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:10:07,629][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 12:10:07,629][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 12:10:07,629][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:10:07,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:10:07,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:10:07,811][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 12:10:07,814][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 12:10:07,814][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 12:10:07,814][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 12:10:07,814][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-18 12:10:07,815][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T09:10:07.815235][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 12:10:07,815][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 12:10:07,816][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 12:10:07,816][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:10:07,816][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:10:07,819][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:10:07,820][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:10:07,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:10:07,820][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:10:07,821][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:10:07,822][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:10:07,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:10:07,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:10:07,842][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:10:07,843][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:10:07,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:10:07,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:10:07,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:10:07,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:10:07,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:10:07,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:10:07,845][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:10:07,845][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:10:07,846][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:10:07,846][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:10:07,871][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:10:07,872][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:10:07,872][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:10:07,873][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:10:07,873][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:10:07,873][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:10:07,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:10:07,875][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:10:07,877][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:07,877][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:07,877][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:10:07,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:10:07,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:10:07,883][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:10:07,883][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:10:07,883][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:10:36,077][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:10:36,077][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:10:36,645][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:36,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:36,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:36,645][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,650][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,651][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,652][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:36,652][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:36,653][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:36,654][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,654][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:36,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,901][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:36,902][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:36,902][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,902][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:36,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:36,904][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:36,905][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:36,906][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:36,906][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:37,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:37,175][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:37,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:37,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:37,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:37,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:37,177][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:37,177][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:37,177][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:37,177][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:37,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:37,178][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:37,178][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:37,179][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:37,179][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:37,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:37,189][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:37,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:37,190][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:37,190][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:37,190][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:37,204][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:37,204][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:37,205][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:37,205][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:37,205][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:37,205][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:37,205][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:37,205][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:37,206][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:37,206][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:37,207][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:37,207][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:37,207][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:37,207][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:10:37,247][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:10:37,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:37,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:37,394][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:10:37,394][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:10:37,395][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:37,395][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:10:37,396][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:10:37,396][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:10:42,908][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:10:42,908][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:10:42,908][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:10:42,908][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:10:42,908][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:10:42,909][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:10:42,909][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:10:43,441][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:43,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:43,441][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:43,441][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,445][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,445][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,446][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,447][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,448][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,448][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:43,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:43,671][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:43,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:43,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,971][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:43,972][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:43,972][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:43,972][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:43,973][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:43,973][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:43,973][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:43,973][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:43,974][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:43,974][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:43,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:43,975][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:43,975][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:43,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:43,985][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:43,985][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:43,985][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:43,985][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:43,986][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:43,986][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:43,998][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:43,999][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:43,999][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:44,000][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:44,000][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:44,000][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:44,000][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:10:44,036][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:10:44,036][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:44,036][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:44,187][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:10:44,187][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:10:44,187][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:10:44,187][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:10:44,188][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:10:44,188][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:10:44,188][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:10:44,188][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:44,188][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:44,188][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:10:44,189][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:10:44,189][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:10:44,715][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:44,715][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:44,715][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:44,715][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:44,718][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:44,718][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:44,718][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:44,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,721][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:44,721][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:44,722][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:44,913][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:44,914][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:44,914][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:44,914][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:44,915][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:44,916][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:44,916][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:45,197][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:45,198][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:45,198][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:45,199][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:45,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:45,199][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:45,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:45,200][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:45,200][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:45,200][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:45,201][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:45,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:45,201][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:45,201][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:45,209][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:45,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:45,211][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:45,211][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:45,211][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:45,211][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:45,212][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:45,212][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:45,212][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:45,225][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:45,226][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:45,226][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:45,226][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:45,226][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:45,226][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:45,226][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:45,227][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:45,227][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:45,227][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:45,227][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:45,227][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:45,227][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:45,227][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:10:45,267][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:10:45,267][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:45,267][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:45,398][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:10:45,398][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:10:45,398][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:10:45,398][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:10:45,398][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:10:45,399][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:10:45,399][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:10:45,400][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:10:45,400][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:10:56,023][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:10:56,023][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:10:56,023][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:10:56,023][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:10:56,024][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:10:56,024][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:10:56,024][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:10:56,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:56,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:56,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:56,563][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:56,566][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,568][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:56,568][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,569][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:56,569][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,569][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:56,760][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:56,761][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:56,761][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,761][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:56,762][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:56,763][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:56,763][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:57,071][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,072][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:57,073][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:57,073][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:57,073][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:57,073][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:57,074][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:57,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:57,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:57,074][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:57,074][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:57,074][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:57,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:57,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:57,075][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:57,075][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:57,075][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:57,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,076][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,076][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:57,085][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,086][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:57,086][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:57,086][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:57,086][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:57,087][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:57,087][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:57,100][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:57,100][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:57,101][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:57,101][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:57,101][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:57,101][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:57,101][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:57,102][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:57,102][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:57,102][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:57,102][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:57,102][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:57,102][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:10:57,145][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:10:57,145][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:57,145][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:57,283][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:10:57,283][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:10:57,283][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:10:57,283][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:10:57,284][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:10:57,284][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:10:57,284][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:10:57,284][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:57,284][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:57,284][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:10:57,284][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:10:57,285][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:10:57,840][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:57,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:57,841][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,845][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:57,846][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,847][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,848][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,848][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:57,849][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:57,850][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:57,850][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:57,850][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:57,850][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:57,850][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:58,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:58,019][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:58,020][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:58,020][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:58,020][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:58,021][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:58,021][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:58,288][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:58,289][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:58,289][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:58,290][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:58,290][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:58,290][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:58,291][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:58,291][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:58,291][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:58,291][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:58,292][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:58,292][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:58,292][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:58,293][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:58,293][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:58,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:58,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:58,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:58,305][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:58,305][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:58,305][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:58,320][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:58,321][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:58,321][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:58,323][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:58,323][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:58,323][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:58,323][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:10:58,376][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:10:58,376][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:58,376][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:58,531][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:10:58,531][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:10:58,531][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:10:58,531][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:10:58,532][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:10:58,532][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:10:58,532][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:10:58,533][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:10:58,835][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:10:58,835][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:10:59,394][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:59,394][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:59,394][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:59,394][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:10:59,398][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,399][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,399][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,400][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,401][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,664][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,664][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,664][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:10:59,665][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:10:59,667][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:59,946][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,947][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:10:59,947][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:59,947][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:10:59,948][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:10:59,948][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:10:59,948][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:59,948][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:10:59,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:10:59,949][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:10:59,949][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:10:59,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:10:59,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:10:59,959][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:10:59,959][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:10:59,959][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:10:59,959][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:10:59,972][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:10:59,972][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:10:59,973][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:10:59,973][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:10:59,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:10:59,973][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:11:00,015][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:11:00,015][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:11:00,016][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:11:00,160][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:11:00,160][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:11:00,161][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:11:00,161][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:25:49,239][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:25:49,240][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:49,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:49,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:49,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:49,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:49,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:49,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:49,246][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:25:49,247][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:25:49,247][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:25:49,251][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:25:49,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:49,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:49,267][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:25:49,270][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:49,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:49,270][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:49,270][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:49,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:49,271][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:49,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:49,273][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:49,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:49,273][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:25:49,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:49,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:49,288][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:25:49,289][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:25:49,289][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:25:51,636][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:25:51,637][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:51,637][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:51,637][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:51,637][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:51,637][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:51,638][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:51,638][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:51,638][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:25:51,638][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:25:51,638][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:25:51,639][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:25:51,640][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:51,640][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:51,654][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:25:51,655][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:51,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:51,655][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:51,655][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:51,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:51,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:51,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:51,657][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:51,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:51,657][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:25:51,658][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:51,658][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:51,663][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:25:51,664][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:25:51,665][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:25:52,921][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:25:52,922][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:52,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:52,923][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:52,923][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:52,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:52,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:52,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:52,924][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:25:52,924][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:25:52,924][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:25:52,924][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:25:52,925][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:52,925][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:52,938][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:25:52,938][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:25:52,938][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:25:52,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:25:52,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:25:52,939][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:25:52,939][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:25:52,940][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:25:52,940][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:52,940][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:25:52,940][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:52,941][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:52,941][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:25:52,941][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:25:52,941][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:25:52,941][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:25:52,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:25:52,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:25:52,947][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:25:52,947][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:25:52,947][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:27:27,963][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:27:27,963][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:27:27,963][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:27:27,963][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:27:27,964][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:27:27,964][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:27:27,964][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:27:28,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:27:28,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:27:28,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:27:28,617][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:27:28,622][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,623][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:27:28,624][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,625][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,625][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:27:28,626][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,627][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:28,628][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:28,628][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:27:28,629][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,629][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,629][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:28,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:28,839][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:27:28,839][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:27:28,840][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:27:28,841][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:27:28,841][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:27:28,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:28,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:28,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:27:29,106][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:29,107][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:27:29,107][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:27:29,107][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:27:29,108][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:27:29,108][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:27:29,108][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:27:29,109][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:27:29,109][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:27:29,109][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:27:29,110][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:27:29,110][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:27:29,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:27:29,119][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:27:29,119][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:27:29,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:27:29,120][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:27:29,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:27:29,121][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:27:29,121][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:27:29,121][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:27:29,134][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:27:29,134][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:27:29,134][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:27:29,134][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:27:29,135][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:27:29,135][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:27:29,135][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:27:29,135][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:27:29,135][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:27:29,135][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:27:29,136][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:27:29,136][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:27:29,136][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:27:29,136][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:27:29,172][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:27:29,172][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:27:29,172][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:27:29,303][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:27:29,303][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:27:29,303][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:27:29,303][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:27:29,304][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:27:29,304][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:27:29,304][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:27:29,305][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:27:29,305][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:27:29,305][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:27:29,305][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:27:48,627][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:27:48,629][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:48,629][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:48,631][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:48,632][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:48,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:48,634][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:48,634][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:48,636][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:27:48,637][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:27:48,637][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:27:48,637][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:27:48,637][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:27:48,637][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:27:48,637][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:27:48,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:48,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:48,649][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:27:48,649][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:48,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:48,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:48,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:48,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:48,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:48,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:48,651][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:27:48,651][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:27:48,651][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:27:48,652][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:27:48,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:48,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:48,694][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:27:48,695][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:48,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:48,695][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:48,695][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:48,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:48,696][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:48,696][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:48,697][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:48,697][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:27:48,697][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:48,697][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:48,698][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:48,698][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:48,698][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:48,698][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:27:48,698][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:48,699][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:48,712][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:27:48,713][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:27:48,713][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:27:50,208][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:27:50,209][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:50,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:50,210][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:50,210][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:50,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:50,211][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:50,212][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:50,212][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:27:50,212][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:27:50,212][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:27:50,213][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:27:50,215][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:50,215][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:50,224][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:27:50,225][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:50,225][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:50,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:50,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:50,225][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:50,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:50,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:50,229][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:50,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:50,229][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:27:50,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:50,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:50,237][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:27:50,238][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:27:50,238][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:27:51,668][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:27:51,668][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:51,669][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:51,669][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:51,669][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:51,669][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:51,670][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:51,670][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:51,671][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:27:51,671][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:27:51,671][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:27:51,672][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:27:51,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:51,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:51,679][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:27:51,680][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:27:51,680][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:27:51,680][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:27:51,680][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:27:51,680][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:27:51,681][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:27:51,681][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:27:51,682][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:51,683][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:27:51,683][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:51,683][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:51,683][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:27:51,683][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:27:51,683][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:27:51,683][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:27:51,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:27:51,684][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:27:51,690][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:27:51,691][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:27:51,691][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:22,826][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:28:22,826][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:28:22,826][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:28:22,826][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:28:22,827][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:28:22,827][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:28:22,827][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:28:23,373][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:28:23,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:23,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:23,373][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:23,376][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,377][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,377][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,379][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,379][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,607][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,607][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,608][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,608][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,608][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:28:23,609][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:28:23,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,889][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:28:23,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:28:23,890][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:28:23,890][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:28:23,890][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:28:23,890][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:28:23,891][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:23,891][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:28:23,891][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:28:23,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:23,892][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:23,892][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:23,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:23,900][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:23,900][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:28:23,900][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:28:23,901][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:28:23,901][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:28:23,912][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:28:23,912][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:28:23,913][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:28:23,913][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:28:23,913][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:28:23,913][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:28:23,913][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:28:23,913][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:28:23,914][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:23,914][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:28:23,914][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:28:23,914][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:28:23,948][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:28:23,948][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:23,949][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:24,084][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:28:24,084][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:28:24,084][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:28:24,084][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:28:24,085][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:28:24,085][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:28:24,085][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:28:24,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:28:24,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:24,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:24,642][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,645][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,646][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,646][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,647][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:24,647][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,647][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:24,832][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:24,833][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:24,833][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,833][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:28:24,834][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:28:24,835][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:24,835][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:25,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:25,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:25,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:25,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:25,127][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:28:25,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:28:25,128][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:28:25,128][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:28:25,128][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:28:25,128][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:28:25,129][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:25,129][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:28:25,129][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:28:25,130][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:28:25,130][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:28:25,137][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:28:25,138][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:28:25,138][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:28:25,139][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:28:25,139][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:28:25,139][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:28:25,150][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:28:25,150][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:28:25,152][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:25,152][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:28:25,152][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:28:25,152][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:28:25,186][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:28:25,187][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:28:25,187][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:28:25,316][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:28:25,316][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:28:25,316][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:28:25,317][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:28:25,317][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:28:25,317][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:28:34,436][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:34,438][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:34,438][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:34,442][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:34,442][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:34,442][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:34,444][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:34,444][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:34,444][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:34,444][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:34,444][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:34,446][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:34,447][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:34,447][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:34,458][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:28:34,459][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:34,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:34,459][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:34,459][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:34,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:34,461][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:34,461][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:34,463][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:34,463][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:34,463][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:28:34,464][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:34,464][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:34,472][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:34,473][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:34,473][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:35,114][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:35,114][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:35,114][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:35,803][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:35,803][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:35,804][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:35,992][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:35,993][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:35,993][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:36,195][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:36,195][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:36,195][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:38,025][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:38,025][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:38,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:38,025][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:38,025][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:38,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:38,026][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:38,026][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:38,026][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:38,026][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:38,026][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:38,027][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:38,027][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:38,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:38,039][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:28:38,040][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:38,040][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:38,040][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:38,040][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:38,040][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:38,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:38,041][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:38,041][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:38,042][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:28:38,042][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:38,042][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:38,042][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:38,042][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:38,042][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:38,042][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:28:38,043][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:38,043][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:38,050][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:28:38,051][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:28:38,051][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:28:40,341][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:40,342][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:40,343][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:40,343][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:40,343][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:40,343][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:40,344][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:40,344][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:40,344][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:40,344][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:40,344][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:40,345][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:40,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:40,346][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:40,357][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:28:40,357][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:40,357][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:40,358][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:40,358][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:40,358][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:40,359][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:40,359][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:40,361][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:40,361][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:40,361][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:28:40,362][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:40,362][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:40,374][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:28:40,375][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/datasets -[2026-02-18 12:28:40,375][INFO][superset_tools_app] Response status: 404 for /api/datasets -[2026-02-18 12:28:42,324][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:42,324][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:42,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:42,325][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:42,325][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:42,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:42,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:42,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:42,327][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:42,327][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:42,327][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:42,328][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:42,330][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:42,330][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:42,342][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:28:42,343][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:28:42,344][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:42,344][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:28:42,344][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:42,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:42,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:42,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:42,347][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:42,348][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:28:42,349][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:42,349][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:28:42,350][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:28:42,350][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:28:42,351][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:28:42,351][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:28:42,351][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:28:42,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:42,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:45,280][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:45,280][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:28:45,280][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:45,281][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:45,281][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:45,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:45,284][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:45,284][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:45,285][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:45,285][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:45,285][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:45,287][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:45,288][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:45,288][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:45,301][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:28:45,302][INFO][superset_tools_app] Incoming request: GET /api/admin/permissions -[2026-02-18 12:28:45,302][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:45,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:28:45,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:45,303][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:45,303][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:45,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:45,304][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:45,304][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:45,305][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:45,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:45,305][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:45,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:45,306][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:45,307][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:45,308][DEBUG][superset_tools_app] [api.admin.list_permissions][Entry] -[2026-02-18 12:28:45,308][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [AuthRepository.list_permissions][Entry] -[2026-02-18 12:28:45,309][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Coherence:OK] -[2026-02-18 12:28:45,309][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Exit] -[2026-02-18 12:28:45,309][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Coherence:OK] -[2026-02-18 12:28:45,309][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Exit] -[2026-02-18 12:28:45,310][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:28:45,311][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:28:45,311][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:28:45,311][INFO][superset_tools_app] Response status: 200 for /api/admin/permissions -[2026-02-18 12:28:45,312][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:28:45,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:45,313][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:45,313][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:45,313][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:47,838][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:28:47,839][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:47,839][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:47,839][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:47,839][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:47,839][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:47,841][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:47,841][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:47,841][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:28:47,842][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:28:47,842][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:28:47,843][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:28:47,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:47,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:47,855][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:28:47,855][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:28:47,856][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:28:47,856][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:28:47,856][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:28:47,856][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:28:47,857][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:28:47,857][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:47,859][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:28:47,859][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:28:47,859][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:28:47,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:28:47,860][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:28:47,869][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:28:47,870][INFO][superset_tools_app] [DEBUG] API route reached SPA handler: api/dashboards -[2026-02-18 12:28:47,871][INFO][superset_tools_app] Response status: 404 for /api/dashboards -[2026-02-18 12:29:13,032][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:29:13,032][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:29:13,032][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:29:13,032][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:29:13,033][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:29:13,033][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:29:13,033][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:29:13,627][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:29:13,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:13,627][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:13,627][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,633][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,636][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,636][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:13,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:29:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:13,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,853][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:13,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:13,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,854][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:29:13,855][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:29:13,856][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:29:13,856][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:13,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:13,857][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:14,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:14,124][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:14,124][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:29:14,125][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:29:14,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:29:14,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:29:14,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:14,125][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:29:14,125][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:29:14,126][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:14,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:14,136][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:14,136][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:14,137][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:29:14,137][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:29:14,137][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:29:14,150][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:29:14,151][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:29:14,151][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:29:14,152][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:29:14,153][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:14,153][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:29:14,153][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:29:14,153][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:29:14,190][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:29:14,190][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:14,190][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:14,317][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:29:14,317][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:29:14,317][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:29:14,317][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:29:14,318][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:29:14,318][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:29:14,318][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:29:20,232][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:29:20,232][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:29:20,835][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:29:20,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:20,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:20,835][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:20,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:20,842][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:20,843][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,844][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:20,844][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:20,845][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:20,845][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:21,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:21,053][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:21,053][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:21,053][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:29:21,054][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:29:21,055][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:21,055][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:21,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:21,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:21,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:21,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:29:21,340][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:29:21,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:29:21,340][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:29:21,341][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:29:21,341][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:21,341][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:29:21,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:29:21,342][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:29:21,342][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:29:21,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:29:21,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:29:21,352][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:29:21,352][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:29:21,352][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:29:21,352][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:29:21,365][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:29:21,365][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:29:21,366][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:21,366][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:29:21,366][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:29:21,366][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:29:21,408][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:29:21,409][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:29:21,409][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:29:21,539][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:29:21,539][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:29:21,540][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:29:21,540][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:29:27,974][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:29:27,975][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:27,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:27,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:27,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:27,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:27,981][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:27,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:27,982][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:29:27,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:29:27,982][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:29:27,985][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:29:27,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:27,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:27,999][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:29:28,001][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:28,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:28,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:28,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:28,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:28,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:28,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:28,004][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:28,004][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:28,005][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:29:28,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:28,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:28,013][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:29:28,018][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:29:30,181][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:29:30,181][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:30,181][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:30,182][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:30,182][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:30,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:30,183][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:30,183][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:30,183][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:29:30,183][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:29:30,183][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:29:30,185][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:29:30,185][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:30,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:30,196][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:29:30,197][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:30,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:30,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:30,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:30,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:30,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:30,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:30,199][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:30,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:30,199][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:29:30,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:30,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:32,568][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:29:32,569][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:32,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:32,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:32,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:32,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:32,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:32,571][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:32,571][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:29:32,571][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:29:32,571][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:29:32,572][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:29:32,572][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:32,572][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:32,584][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:29:32,585][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:32,585][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:32,585][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:32,585][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:32,585][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:32,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:32,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:32,586][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:32,586][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:32,587][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:32,587][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:32,596][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:29:32,597][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 12:29:34,144][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:29:34,145][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:34,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:34,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:34,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:34,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:34,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:34,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:34,148][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:29:34,148][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:29:34,148][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:29:34,148][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:29:34,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:34,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:34,161][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:29:34,162][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:34,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:34,162][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:34,162][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:34,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:34,163][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:34,163][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:34,164][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:34,164][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:34,164][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:29:34,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:34,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:39,603][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:29:39,604][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:39,604][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:39,605][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:39,605][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:39,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:39,606][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:39,606][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:39,607][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:29:39,607][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:29:39,607][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:29:39,607][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:29:39,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:39,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:29:39,622][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:29:39,622][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:29:39,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:39,624][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:29:39,624][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:29:39,624][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:29:39,625][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:29:39,626][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:30:09,648][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:30:09,648][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:30:10,474][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:30:10,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:10,474][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:10,474][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,480][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,482][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,483][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,484][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:10,485][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:10,486][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:10,486][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:30:10,486][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,486][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,486][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:10,824][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:10,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:10,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:30:10,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,825][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,825][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:10,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:30:10,826][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:30:10,827][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:10,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:11,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:11,181][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:11,181][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:30:11,182][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:30:11,182][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:30:11,182][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:30:11,182][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:30:11,183][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:11,183][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:30:11,183][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:30:11,184][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:30:11,184][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:30:11,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:11,184][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:11,184][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:11,194][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:11,195][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:11,195][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:30:11,195][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:30:11,195][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:30:11,196][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:30:11,196][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:30:11,209][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:30:11,210][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:30:11,210][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:30:11,212][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:11,212][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:11,212][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:30:11,213][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:30:11,213][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:30:11,213][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:30:11,262][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:30:11,263][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:11,263][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:30:11,443][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:30:11,443][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:30:11,444][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:30:11,444][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:30:17,417][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:30:17,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:17,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:17,418][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:17,422][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,424][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,425][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,425][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,636][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,636][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:17,637][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:30:17,638][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,873][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,874][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:30:17,874][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:30:17,874][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:30:17,874][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:30:17,875][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:30:17,875][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:17,875][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:30:17,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:30:17,876][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:30:17,876][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:30:17,883][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:30:17,884][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:30:17,884][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:30:17,884][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:30:17,884][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:30:17,885][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:30:17,885][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:30:17,898][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:30:17,898][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:30:17,899][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:17,899][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:30:17,899][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:30:17,899][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:30:17,929][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:30:17,930][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:30:17,930][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:30:28,718][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:28,719][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:28,720][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:28,722][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:28,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:28,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:28,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:28,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:28,725][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:28,725][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:28,725][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:28,727][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:28,728][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:28,728][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:28,741][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:30:28,742][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:28,743][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:28,743][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:28,743][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:28,743][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:28,744][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:28,744][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:28,745][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:28,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:28,745][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:30:28,746][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:28,746][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:29,863][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:29,863][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:29,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:29,864][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:29,864][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:29,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:29,865][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:29,865][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:29,865][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:29,866][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:29,866][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:29,868][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:29,869][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:29,869][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:29,886][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:30:29,887][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:29,887][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:29,887][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:29,887][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:29,887][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:29,888][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:29,888][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:29,890][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:29,890][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:30:29,890][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:29,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:29,891][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:29,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:29,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:29,891][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:30:29,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:29,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:31,208][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:31,209][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:31,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:31,209][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:31,210][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:31,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:31,210][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:31,210][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:31,211][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:31,211][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:31,211][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:31,213][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:31,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:31,214][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:31,224][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:30:31,225][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:31,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:31,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:31,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:31,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:31,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:31,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:31,228][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:31,228][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:30:31,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:31,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:31,229][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:31,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:31,229][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:31,229][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:30:31,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:31,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:32,846][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:32,847][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:32,847][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:32,848][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:32,848][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:32,848][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:32,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:32,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:32,849][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:32,849][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:32,849][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:32,850][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:32,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:32,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:32,864][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:30:32,865][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:30:32,868][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:32,869][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:32,869][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:32,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:32,871][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:32,872][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:32,872][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:32,873][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:32,874][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:32,875][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:32,875][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:30:32,876][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:32,876][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:32,876][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:32,876][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:32,876][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:30:32,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:32,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:32,880][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:30:32,880][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:30:32,880][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:30:32,880][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:30:32,880][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:30:32,881][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:30:32,881][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:30:32,882][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:30:32,882][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:30:32,882][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:30:32,882][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:30:32,882][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:30:32,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:32,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:35,068][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:35,069][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:35,069][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:35,069][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:35,069][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:35,069][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:35,071][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:35,071][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:35,072][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:35,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:35,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:35,075][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:35,077][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:35,077][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:35,094][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-18 12:30:35,095][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:30:35,095][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:35,095][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:35,096][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:35,098][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:35,098][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:35,098][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:35,098][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:35,100][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:30:35,102][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:30:35,102][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:30:35,104][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-18 12:30:35,105][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-18 12:30:35,105][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-18 12:30:35,105][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:30:35,107][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-18 12:30:35,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:35,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:35,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:35,109][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:44,451][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:30:44,452][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:44,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:44,452][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:44,452][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:44,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:44,453][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:44,453][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:30:44,454][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:30:44,454][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:30:44,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:44,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:44,467][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:44,467][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:44,467][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:44,468][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:44,469][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:44,469][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:44,469][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:44,470][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:44,470][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:44,504][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:30:44,505][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:44,505][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:44,505][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:44,505][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:44,505][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:44,506][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:44,506][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:44,508][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:44,509][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:30:44,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:44,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:44,509][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:44,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:44,509][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:44,509][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:30:44,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:44,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:54,491][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:54,493][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:54,493][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:54,493][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:54,494][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:54,494][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:54,494][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:54,495][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:54,495][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:54,495][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:54,495][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:54,497][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:54,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:54,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:54,510][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-18 12:30:54,511][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:30:54,511][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:54,511][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:54,512][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:54,512][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:54,512][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:54,512][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:54,513][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:54,513][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:54,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:54,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:54,514][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:54,514][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:54,514][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:54,514][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:54,518][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:30:54,518][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:30:54,518][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:30:54,520][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-18 12:30:54,521][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-18 12:30:54,521][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-18 12:30:54,521][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:30:54,522][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-18 12:30:54,523][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:54,523][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:54,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:54,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:55,313][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:30:55,313][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:55,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:55,314][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:55,314][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:55,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:55,315][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:55,315][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:55,315][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:30:55,315][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:30:55,315][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:30:55,316][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:30:55,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:55,317][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:30:55,329][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:30:55,329][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:30:55,329][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:30:55,330][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:30:55,330][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:30:55,330][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:30:55,330][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:30:55,330][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:55,331][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:30:55,331][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:30:55,332][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:30:55,332][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:30:55,332][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:31:12,995][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:31:12,995][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:31:13,564][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:31:13,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:13,564][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:13,564][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,567][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,568][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,569][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,569][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:31:13,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:13,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:13,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:13,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,758][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:31:13,759][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:31:13,760][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:13,760][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,096][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:14,097][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:31:14,098][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:31:14,098][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:31:14,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:31:14,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:31:14,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:14,099][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:31:14,099][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:31:14,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,100][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:14,110][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,111][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:14,112][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:31:14,112][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:31:14,112][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:31:14,113][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:31:14,130][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:31:14,130][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:31:14,131][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:31:14,131][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:31:14,132][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:14,132][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:31:14,132][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:31:14,132][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:31:14,169][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:31:14,169][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:14,170][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:14,306][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:31:14,306][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:31:14,306][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:31:14,306][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:31:14,307][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:31:14,307][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:31:14,307][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:31:14,883][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:31:14,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:14,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:14,883][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,887][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:14,888][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:14,889][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:14,889][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:15,049][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:15,049][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:15,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:31:15,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:31:15,051][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:15,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:15,303][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:15,304][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:15,304][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:31:15,305][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:31:15,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:31:15,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:31:15,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:15,305][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:31:15,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:31:15,306][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:31:15,306][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:31:15,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:31:15,314][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:31:15,315][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:31:15,315][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:31:15,315][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:31:15,315][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:31:15,326][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:31:15,326][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:31:15,327][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:31:15,327][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:31:15,327][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:31:15,327][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:31:15,327][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:31:15,328][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:15,328][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:15,328][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:31:15,328][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:31:15,328][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:31:15,328][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:31:15,369][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:31:15,369][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:31:15,369][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:31:15,510][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:31:15,510][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:31:15,510][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:31:15,510][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:31:15,510][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:31:15,511][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:31:15,511][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:31:20,773][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:20,775][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:20,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:20,779][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:20,779][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:20,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:20,782][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:20,783][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:20,783][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:20,783][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:20,783][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:20,793][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:20,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:20,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:20,815][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:20,816][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:20,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:20,817][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:20,817][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:20,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:20,818][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:20,818][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:20,819][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:20,820][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:20,820][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:20,820][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:20,820][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:20,820][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:20,820][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:20,820][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:20,821][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:20,821][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:22,010][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:22,011][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:22,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:22,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:22,013][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:22,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:22,014][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:22,015][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:22,015][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:22,015][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:22,015][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:22,019][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:22,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:22,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:22,043][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:22,044][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:22,044][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:22,045][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:22,045][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:22,045][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:22,046][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:22,047][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:22,050][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:22,051][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:22,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:22,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:22,051][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:22,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:22,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:22,052][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:22,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:22,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:23,001][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:23,002][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:23,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:23,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:23,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:23,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:23,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:23,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:23,003][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:23,003][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:23,003][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:23,004][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:23,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:23,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:23,018][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:23,019][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:23,019][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:23,019][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:23,019][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:23,019][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:23,020][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:23,020][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:23,021][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:23,021][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:23,021][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:23,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:23,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:24,593][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:24,594][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:24,594][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:24,594][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:24,594][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:24,594][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:24,595][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:24,595][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:24,595][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:24,595][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:24,595][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:24,597][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:24,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:24,599][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:24,650][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:24,652][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:24,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:24,653][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:24,653][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:24,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:24,654][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:24,654][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:24,655][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:24,655][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:24,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:24,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:24,656][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:24,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:24,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:24,656][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:24,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:24,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:25,614][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:25,614][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:25,615][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:25,615][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:25,615][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:25,615][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:25,617][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:25,617][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:25,617][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:25,617][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:25,617][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:25,618][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:25,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:25,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:25,631][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:25,632][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:25,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:25,632][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:25,632][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:25,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:25,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:25,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:25,634][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:25,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:25,634][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:25,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:25,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:27,550][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:27,551][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:27,551][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:27,552][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:27,552][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:27,552][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:27,552][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:27,553][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:27,553][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:27,553][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:27,553][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:27,554][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:27,555][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:27,555][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:27,569][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:31:27,569][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:31:27,570][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:31:27,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [decode_token][Entry] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:27,571][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:27,572][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:27,573][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:27,573][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:27,574][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:27,575][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:31:27,576][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:27,576][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 12:31:27,577][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:31:27,578][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:31:27,578][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:31:27,579][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:31:27,579][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:31:27,579][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:31:27,579][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:31:27,579][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:31:27,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:27,580][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:29,590][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:31:29,591][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:31:29,591][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:29,591][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:29,591][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:29,591][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:29,592][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:29,592][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:29,592][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:31:29,592][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:31:29,592][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:31:29,593][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:31:29,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:29,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:31:29,604][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:31:29,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] -[2026-02-18 12:31:29,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:31:29,605][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:31:29,605][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:31:29,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:31:29,606][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:31:29,606][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:29,607][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:31:29,607][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:31:29,607][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:31:29,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:31:29,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:34:46,572][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:34:46,572][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:34:46,572][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:34:46,572][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:34:46,573][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:34:46,573][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:34:46,573][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:34:47,253][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:34:47,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:34:47,253][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:34:47,253][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:34:47,258][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:34:47,259][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,260][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,260][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,261][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:34:47,261][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,262][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,262][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,481][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,481][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:34:47,481][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:34:47,482][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,737][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:34:47,737][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:34:47,738][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:34:47,738][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:34:47,738][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:34:47,739][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:34:47,739][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:34:47,740][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:34:47,741][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:34:47,741][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:34:47,754][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:34:47,755][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:34:47,755][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:34:47,755][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:34:47,756][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:34:47,756][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:34:47,774][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:34:47,775][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:34:47,775][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:34:47,777][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:34:47,777][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:34:47,777][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:34:47,777][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:34:47,810][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:34:47,810][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:34:47,810][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:34:47,925][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:34:47,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:34:47,926][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:34:47,926][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:36:21,586][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:36:21,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:36:21,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:36:21,586][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,589][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,590][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:21,592][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,592][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:21,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,806][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,806][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:21,807][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:21,807][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:36:21,807][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:36:21,808][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:36:21,809][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:21,809][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:22,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:22,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:36:22,050][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:36:22,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:36:22,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:36:22,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:36:22,051][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:36:22,051][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:36:22,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:36:22,052][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:36:22,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:36:22,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:36:22,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:22,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:36:22,060][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:36:22,060][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:36:22,060][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:36:22,060][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:36:22,061][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:36:22,061][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:36:22,061][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:36:22,061][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:36:22,061][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:36:22,070][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:36:22,070][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:36:22,071][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:36:22,071][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:36:22,071][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:36:22,071][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:36:22,071][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:36:22,071][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:36:22,072][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:36:22,072][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:36:22,072][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:36:22,072][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:36:22,101][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:36:22,101][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:36:22,101][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:36:22,232][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:36:22,233][INFO][superset_tools_app] Response status: 401 for /api/dashboards -[2026-02-18 12:36:22,320][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:36:22,321][INFO][superset_tools_app] Response status: 401 for /api/dashboards -[2026-02-18 12:36:58,646][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:36:58,648][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:36:58,648][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:36:58,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:36:58,651][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:36:58,651][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:36:58,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:36:58,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:36:58,655][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:36:58,655][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:36:58,656][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:36:58,656][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:36:58,656][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:36:58,656][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:36:58,656][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:36:58,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:36:58,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:36:58,667][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:36:58,668][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:36:58,668][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:36:58,668][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:36:58,668][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:36:58,668][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:36:58,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:36:58,669][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:36:58,669][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:36:58,669][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:36:58,669][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:36:58,670][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:36:58,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:36:58,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:36:58,705][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:36:58,706][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:36:58,706][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:36:58,706][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:36:58,706][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:36:58,706][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:36:58,707][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:36:58,707][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:36:58,709][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:36:58,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:36:58,709][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:36:58,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:36:58,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:01,513][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:01,513][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:01,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:01,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:01,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:01,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:01,516][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:01,516][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:01,516][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:01,516][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:01,516][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:01,518][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:01,519][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:01,519][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:01,528][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:37:01,529][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:01,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:01,529][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:01,529][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:01,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:01,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:01,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:01,531][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:01,531][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:37:01,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:01,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:01,532][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:01,532][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:01,532][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:01,532][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:37:01,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:01,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:02,989][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:02,990][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:02,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:02,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:02,990][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:02,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:02,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:02,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:02,992][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:02,992][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:02,992][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:02,994][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:02,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:02,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:03,005][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:37:03,005][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:37:03,006][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:03,006][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:03,007][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:03,008][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:03,008][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:03,010][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:03,010][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:03,011][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:03,011][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:03,012][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:03,012][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:37:03,013][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:37:03,014][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:37:03,014][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:37:03,015][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:37:03,015][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:37:03,015][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:37:03,015][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:37:03,016][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:37:03,016][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:03,016][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:03,017][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:03,017][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 12:37:04,563][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:04,564][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:04,564][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:04,564][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:04,564][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:04,564][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:04,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:04,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:04,566][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:04,566][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:04,566][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:04,567][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:04,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:04,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:04,574][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:37:04,575][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:04,575][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:04,575][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:04,575][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:04,575][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:04,576][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:04,576][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:04,577][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:04,577][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:04,577][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:37:04,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:04,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:49,619][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 12:37:49,621][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:49,622][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 12:37:49,622][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 12:37:49,622][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:49,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:49,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:49,803][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 12:37:49,805][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 12:37:49,805][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 12:37:49,805][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 12:37:49,805][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-18 12:37:49,806][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T09:37:49.806438][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 12:37:49,806][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 12:37:49,807][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:49,807][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:49,811][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:49,811][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:49,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:49,812][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:49,812][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:49,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:49,813][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:49,813][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:49,813][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:49,813][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:49,813][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:49,814][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:49,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:49,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:49,827][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:37:49,827][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:49,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:49,827][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:49,827][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:49,828][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:49,828][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:49,828][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:37:49,829][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:49,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:49,857][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:37:49,858][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:49,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:49,859][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:49,859][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:49,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:49,860][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:49,860][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:49,861][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:49,862][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:37:49,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:49,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:49,862][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:49,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:49,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:49,862][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:37:49,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:49,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:49,870][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:37:49,871][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:49,871][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:49,872][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:49,872][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:49,872][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:49,873][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:49,873][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:49,874][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:49,875][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:49,875][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:37:49,875][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:37:49,882][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:37:49,882][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:37:49,882][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:37:49,882][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:37:49,882][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:37:49,883][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:37:49,883][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:37:49,883][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:37:49,883][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:37:49,883][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:37:49,883][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:37:49,883][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:37:49,883][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,199][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:53,200][INFO][superset_tools_app] Response status: 503 for /api/dashboards -[2026-02-18 12:37:53,708][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:53,708][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:53,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:53,709][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:53,709][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:53,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:53,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:53,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:53,711][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:53,711][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:53,711][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:53,712][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:53,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:53,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:53,718][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:37:53,719][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:53,719][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:53,719][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:53,719][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:53,719][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:53,720][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:53,720][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:53,721][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:53,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:53,721][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:37:53,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:53,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:53,727][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:37:53,728][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:53,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:53,729][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:53,729][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:53,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:53,730][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:53,730][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:53,732][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:53,732][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:37:53,732][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:37:53,737][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:37:53,737][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:37:53,737][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:37:53,737][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 12:37:53,737][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 12:37:53,737][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 12:37:53,737][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:37:53,738][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:37:53,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:37:53,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:37:53,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,111][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,112][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,112][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,112][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:37:57,113][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:37:57,113][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 12:37:57,113][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:57,113][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:57,113][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:57,113][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:57,113][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:57,114][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:57,114][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:57,114][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:37:57,114][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:37:57,114][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:37:57,115][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:37:57,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:57,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:57,122][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:37:57,123][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:57,123][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:57,123][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:57,123][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:57,123][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:57,124][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:57,124][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:57,125][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:57,125][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:57,125][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:37:57,126][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:37:57,126][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:37:57,129][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:37:57,131][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:37:57,131][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:37:57,132][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:37:57,132][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:37:57,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:37:57,133][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:37:57,133][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:37:57,134][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:37:57,134][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:57,135][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:37:57,135][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:37:57,135][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:37:57,140][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:37:57,141][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:37:57,141][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:00,107][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:00,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:00,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:00,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:00,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:01,020][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:01,765][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,765][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,765][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 12:38:01,765][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,766][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,766][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,766][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 12:38:01,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,774][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,774][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,774][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,774][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 12:38:01,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:01,775][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 12:38:01,775][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 12:38:01,775][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:38:01,775][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:38:01,776][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:38:01,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:01,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:05,382][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:38:05,382][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:05,382][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:05,383][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:05,383][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:05,383][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:05,383][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:05,383][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:05,384][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:38:05,384][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:38:05,384][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:38:05,385][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:38:05,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:05,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:05,392][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:38:05,392][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:05,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:05,392][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:05,392][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:05,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:05,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:05,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:38:05,394][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:05,394][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:38:05,394][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:05,395][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:05,398][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:38:05,399][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:05,399][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:05,399][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:05,399][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:05,400][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:05,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:05,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:05,401][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:38:05,401][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 12:38:05,401][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:05,401][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:05,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:05,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:05,402][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:05,406][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:05,407][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:05,407][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:08,714][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 12:38:08,714][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 12:38:08,714][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 12:38:08,714][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,714][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,715][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:08,716][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 12:38:10,268][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:38:10,270][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:10,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:10,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:10,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:10,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:10,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:10,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:38:10,273][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:10,274][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:10,274][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:10,274][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:10,278][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:10,278][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:10,278][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 12:38:10,279][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:10,279][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:10,279][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:10,279][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:10,279][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:13,589][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 12:38:13,589][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 12:38:13,589][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 12:38:13,589][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,590][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,591][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:38:13,591][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 12:38:14,840][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:38:14,842][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:14,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:14,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:14,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:14,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:14,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:14,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:14,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:14,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:14,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:14,853][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:14,857][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:14,858][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:14,858][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:17,002][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:17,002][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:17,002][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:17,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:17,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:17,576][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:17,576][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:17,576][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:17,576][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:17,577][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:18,190][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:18,191][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 12:38:18,191][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 12:38:18,191][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 12:38:18,191][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 12:38:18,191][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 12:38:18,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:18,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:36,690][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:38:36,691][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:36,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:36,691][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:36,691][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:36,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:36,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:36,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:36,693][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:38:36,693][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:38:36,693][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:38:36,694][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:38:36,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:36,695][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:36,700][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:38:36,701][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:36,701][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:36,702][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:36,702][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:36,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:36,702][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:36,702][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:38:36,703][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:36,703][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:36,704][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:38:36,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:36,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:36,708][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:38:36,708][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:36,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:36,709][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:36,709][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:36,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:36,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:36,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:36,711][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:36,712][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:38:36,712][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:36,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:38:36,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:36,713][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:36,717][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:36,717][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:36,717][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:37,687][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:37,688][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:37,688][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:37,688][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:37,688][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:38,082][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:38,082][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:38,082][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:38,083][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:38,681][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:38:38,681][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,682][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,682][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,682][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,682][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,682][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,683][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 12:38:38,683][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 12:38:38,687][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,688][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,688][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,689][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:38:38,689][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 12:38:38,689][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 12:38:38,689][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 12:38:38,689][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 12:38:38,690][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:38:38,690][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:38:38,690][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:38:38,690][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:38,691][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:46,558][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-18 12:38:46,559][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-18 12:38:46,559][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-18 12:38:46,560][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-18 12:38:46,560][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-18 12:38:46,561][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-18 12:38:46,561][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:46,561][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:46,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:46,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:46,563][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:46,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:46,564][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:46,565][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-18 12:38:46,565][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-18 12:38:46,565][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 12:38:46,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 12:38:46,566][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:46,566][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:46,570][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:46,570][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:46,570][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 12:38:46,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 12:38:46,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:46,570][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:46,574][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:46,574][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 12:38:46,574][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:46,574][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:46,575][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:46,575][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:46,575][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:46,575][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:48,782][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:48,782][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:48,783][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:48,783][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:48,783][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:49,331][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:49,332][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:49,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:49,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:49,737][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 12:38:49,737][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:49,737][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:49,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 12:38:49,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:49,738][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:51,701][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:51,701][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:51,701][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:51,701][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:51,701][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:52,403][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:52,404][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:52,674][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:52,674][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:52,674][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 12:38:52,674][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 12:38:52,674][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 12:38:52,675][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 12:38:52,675][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-18 12:38:52,678][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 12:38:52,678][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:38:52,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:38:52,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:52,679][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:52,683][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:52,684][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:52,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:53,585][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:53,585][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:53,585][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:53,585][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:53,586][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:53,794][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:53,795][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:53,988][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 12:38:53,988][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 12:38:53,989][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-18 12:38:53,990][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-18 12:38:53,991][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:53,991][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:53,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:53,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:53,992][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:38:53,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:38:53,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:38:53,993][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:38:53,998][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 12:38:53,998][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:38:54,866][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:38:54,867][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:38:54,867][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:38:54,867][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:54,867][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:38:55,220][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:38:55,695][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 12:38:55,695][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 12:38:55,696][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-18 12:38:55,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:55,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:58,065][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:38:58,065][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:58,066][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:58,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:58,066][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:58,066][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:58,066][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:58,067][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:58,067][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:38:58,067][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:38:58,067][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:38:58,068][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:38:58,069][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:58,069][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:58,076][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-18 12:38:58,077][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:38:58,077][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:58,077][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:38:58,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:58,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:38:58,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:58,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:38:58,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:58,079][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:38:58,079][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:58,079][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:38:58,079][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:58,080][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:38:58,080][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:58,080][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:38:58,081][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-18 12:38:58,082][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-18 12:38:58,082][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-18 12:38:58,082][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:38:58,083][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:38:58,083][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:38:58,084][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-18 12:38:58,085][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:38:58,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:58,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:38:58,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:38:58,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:01,422][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:39:01,422][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:01,423][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:01,423][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:01,423][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:01,423][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:01,424][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:01,424][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:01,424][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:39:01,424][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:39:01,424][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:39:01,426][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:39:01,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:01,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:01,433][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:39:01,433][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:01,434][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:01,434][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:01,434][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:01,434][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:01,435][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:01,435][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:01,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:01,436][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:39:01,437][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:01,437][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:01,441][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards -[2026-02-18 12:39:01,443][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:01,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:01,443][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:01,443][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:01,443][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:01,444][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:01,444][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:01,445][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 -[2026-02-18 12:39:01,445][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:39:01,445][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:01,445][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:39:01,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:39:01,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:39:01,446][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:39:01,451][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:39:01,452][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:39:01,452][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:39:02,716][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:39:02,716][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:39:02,716][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:39:02,716][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:02,716][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:02,991][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:39:02,991][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:39:02,991][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:39:02,991][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:39:02,991][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:02,992][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:03,314][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:39:03,315][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:39:03,315][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:39:03,315][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:03,315][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:03,315][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:39:03,315][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:39:03,316][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards -[2026-02-18 12:39:03,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:03,317][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:05,230][INFO][superset_tools_app] Incoming request: GET /api/git/repositories/10/branches -[2026-02-18 12:39:05,233][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:05,233][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:05,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:05,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:05,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:05,234][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [get_branches][Entry] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [get_branches][Action] [get_branches][Action] [get_branches][Action] [get_branches][Action] [GitService.list_branches][Entry] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:05,235][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:39:05,235][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:39:05,236][DEBUG][superset_tools_app] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.list_branches][Action] [GitService.list_branches][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:39:05,236][DEBUG][superset_tools_app] [get_branches][Action] [get_branches][Action] [get_branches][Action] [get_branches][Action] [get_branches][Coherence:Failed] 404: 404: Repository for dashboard 10 not found -[2026-02-18 12:39:05,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 404: 404: Repository for dashboard 10 not found -[2026-02-18 12:39:05,236][INFO][superset_tools_app] Response status: 404 for /api/git/repositories/10/branches -[2026-02-18 12:39:05,243][INFO][superset_tools_app] Incoming request: GET /api/git/config -[2026-02-18 12:39:05,243][DEBUG][superset_tools_app] [get_db][Entry] -[2026-02-18 12:39:05,243][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_auth_db][Entry] -[2026-02-18 12:39:05,243][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:05,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:05,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:05,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:05,245][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:05,245][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:05,245][DEBUG][superset_tools_app] [get_git_configs][Entry] -[2026-02-18 12:39:05,247][DEBUG][superset_tools_app] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Coherence:OK] -[2026-02-18 12:39:05,247][DEBUG][superset_tools_app] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Action] [get_git_configs][Exit] -[2026-02-18 12:39:05,247][INFO][superset_tools_app] Response status: 200 for /api/git/config -[2026-02-18 12:39:05,248][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:05,248][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:05,249][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 12:39:05,249][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 12:39:18,710][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:39:18,711][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:18,711][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:18,711][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:18,711][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:18,711][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:18,713][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:18,713][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:18,713][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:39:18,713][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:39:18,713][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:39:18,715][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:39:18,716][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:18,716][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:18,721][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:39:18,722][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:18,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:18,722][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:18,722][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:18,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:18,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:18,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:39:18,725][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:18,725][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:18,726][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:39:18,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:18,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:18,731][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:39:18,732][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:18,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:18,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:18,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:18,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:18,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:18,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:18,737][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:39:18,737][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:39:18,738][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:39:18,738][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:39:18,738][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:39:18,743][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:39:18,743][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:39:18,744][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:39:18,744][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:39:18,744][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:39:18,744][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:39:18,744][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:39:18,744][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:39:20,280][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:39:20,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:39:20,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:39:20,280][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:20,280][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:21,133][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:21,134][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:39:21,888][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,888][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,889][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,889][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,889][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 12:39:21,889][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 12:39:21,893][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,893][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,893][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,893][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,895][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:21,895][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 12:39:21,895][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 12:39:21,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 12:39:21,896][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 12:39:21,896][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:21,896][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:21,896][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:39:21,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:21,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:39:28,684][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:39:28,685][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:39:28,685][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:39:28,686][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:39:28,686][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:39:28,686][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:39:28,686][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:39:28,686][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=25 -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:39:28,687][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:39:28,688][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:39:28,688][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:39:28,688][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:39:28,694][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:39:28,694][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:39:28,694][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:39:31,072][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:39:31,073][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:39:31,073][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:39:31,073][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:31,073][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:39:31,321][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:39:31,322][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:39:31,690][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,690][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,690][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 12:39:31,690][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,691][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,691][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 12:39:31,691][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,696][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,696][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,696][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:39:31,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:39:31,698][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 12:39:31,698][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 12:39:31,698][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 13 dashboards (page 1/1, total: 13) -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:39:31,698][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:39:31,699][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:39:31,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:39:31,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:45,129][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:55:45,129][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:45,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:45,129][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:45,130][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:45,130][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:45,130][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:45,130][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:45,131][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:55:45,131][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:55:45,131][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:55:45,133][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:55:45,134][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:45,134][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:45,147][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:55:45,149][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:45,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:45,150][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:45,150][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:45,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:45,151][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:45,151][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:45,152][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:45,152][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:55:45,152][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:45,152][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:45,152][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:45,153][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:45,153][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:45,153][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:55:45,154][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:45,154][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:48,526][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:55:48,527][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:48,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:48,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:48,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:48,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:48,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:48,530][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:48,531][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:55:48,531][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:55:48,531][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:55:48,531][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:55:48,531][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:55:48,532][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:55:48,532][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:55:48,533][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:48,533][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:48,559][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:55:48,560][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:48,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:48,561][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:48,561][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:48,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:48,562][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:48,562][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:48,562][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:55:48,562][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:55:48,562][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:55:48,563][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:55:48,564][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:48,564][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:48,622][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:55:48,623][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:48,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:48,624][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:48,624][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:48,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:48,626][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:48,626][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:48,628][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:48,628][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:48,628][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:55:48,630][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:48,630][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:50,994][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:55:50,994][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:50,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:50,995][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:50,995][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:50,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:50,996][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:50,996][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:50,996][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:55:50,996][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:55:50,996][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:55:50,998][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:55:51,000][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:51,000][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:51,018][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:55:51,018][INFO][superset_tools_app] Incoming request: GET /api/storage/files -[2026-02-18 12:55:51,019][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:51,019][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:51,019][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:51,020][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:51,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:51,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:51,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:51,022][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [list_files][Entry] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:55:51,023][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None -[2026-02-18 12:55:51,023][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:51,024][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:51,024][INFO][superset_tools_app] Response status: 200 for /api/storage/files -[2026-02-18 12:55:51,024][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:55:51,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:51,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:51,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:51,025][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:56,257][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 12:55:56,259][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:56,259][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 12:55:56,259][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 12:55:56,259][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:56,260][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:56,260][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:56,437][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 12:55:56,439][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 12:55:56,439][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 12:55:56,439][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 12:55:56,439][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin -[2026-02-18 12:55:56,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T09:55:56.440119][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 12:55:56,440][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 12:55:56,441][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 12:55:56,441][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:56,441][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:56,447][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:55:56,448][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:56,448][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:56,448][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:56,448][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:56,448][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:56,450][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:56,450][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:56,451][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:55:56,451][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:55:56,451][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:55:56,451][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:55:56,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:56,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:56,472][INFO][superset_tools_app] Incoming request: GET /api/plugins -[2026-02-18 12:55:56,472][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:56,473][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [list_plugins][Entry] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] -[2026-02-18 12:55:56,475][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] -[2026-02-18 12:55:56,476][INFO][superset_tools_app] Response status: 200 for /api/plugins -[2026-02-18 12:55:56,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:56,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:55:56,536][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:55:56,537][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:55:56,537][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:55:56,537][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:55:56,537][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:55:56,537][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:55:56,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:55:56,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:55:56,541][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:56,542][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:55:56,542][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:56,542][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:56,542][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:55:56,542][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:55:56,542][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:55:56,542][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:55:56,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:55:56,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:09,936][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:09,937][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:09,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:09,938][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:09,938][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:09,938][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:09,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:09,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:09,939][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:09,939][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:09,939][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:09,940][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:09,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:09,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:09,955][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:56:09,956][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:09,956][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:09,956][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:09,956][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:09,956][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:09,957][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:09,957][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:09,959][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:56:09,959][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:56:09,959][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:09,959][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:09,960][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:56:09,960][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:09,960][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:09,960][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:56:09,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:09,961][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:09,969][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 12:56:09,971][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:09,971][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:09,972][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:09,972][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:09,972][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:09,973][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:09,973][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 12:56:09,974][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:56:09,974][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 12:56:09,975][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:56:09,975][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:56:09,980][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:56:09,980][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:56:09,980][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:56:09,980][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:56:09,980][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:56:09,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:56:09,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:56:09,981][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:56:11,077][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:56:11,077][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:56:11,077][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:56:11,077][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:11,077][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:11,511][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:11,512][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:12,316][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:56:12,317][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,317][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 12:56:12,317][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 12:56:12,318][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,322][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 12:56:12,322][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,323][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 12:56:12,323][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 12:56:12,324][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 12:56:12,324][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 12:56:12,324][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 12:56:12,324][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 12:56:12,324][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 12:56:12,324][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 12:56:12,325][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 12:56:12,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:56:12,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:56:12,325][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 12:56:12,326][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:12,326][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:27,013][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:27,014][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:27,014][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:27,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:27,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:27,014][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:27,015][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:27,015][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:27,015][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:27,015][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:27,015][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:27,016][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:27,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:27,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:27,028][INFO][superset_tools_app] Incoming request: GET /api/environments -[2026-02-18 12:56:27,029][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:27,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:27,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:27,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:27,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:27,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:27,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:27,032][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:27,033][INFO][superset_tools_app] Response status: 200 for /api/environments -[2026-02-18 12:56:27,033][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:27,033][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:27,039][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards -[2026-02-18 12:56:27,040][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:27,041][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:27,041][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:27,041][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:27,041][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:27,042][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:27,042][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:27,042][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:56:27,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:56:27,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:56:27,043][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:56:27,048][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 12:56:27,048][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:56:27,048][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 12:56:27,048][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:56:27,048][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:56:27,049][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:56:27,049][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:27,049][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:27,049][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:56:27,049][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:56:27,049][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:56:27,049][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:56:27,049][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:56:28,386][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:56:28,387][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:56:28,387][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:56:28,387][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:28,387][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:29,093][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:56:29,748][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 12:56:29,748][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 12:56:29,749][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards -[2026-02-18 12:56:29,750][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:29,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:29,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:29,751][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:29,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:29,752][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:29,752][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:29,752][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:29,753][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:29,754][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:29,754][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:29,754][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:29,754][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:29,755][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:29,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:29,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:29,769][INFO][superset_tools_app] Incoming request: GET /api/admin/users -[2026-02-18 12:56:29,771][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:56:29,772][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:29,772][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:29,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:29,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:29,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:29,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:29,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:29,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:29,777][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:56:29,777][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:56:29,777][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:56:29,777][DEBUG][superset_tools_app] [api.admin.list_users][Entry] -[2026-02-18 12:56:29,778][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] -[2026-02-18 12:56:29,778][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] -[2026-02-18 12:56:29,778][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:56:29,778][INFO][superset_tools_app] Response status: 200 for /api/admin/users -[2026-02-18 12:56:29,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:29,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:29,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:29,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:31,606][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:31,607][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:31,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:31,607][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:31,607][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:31,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:31,608][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:31,608][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:31,608][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:31,609][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:31,609][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:31,610][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:31,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:31,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:31,625][INFO][superset_tools_app] Incoming request: GET /api/admin/roles -[2026-02-18 12:56:31,625][INFO][superset_tools_app] Incoming request: GET /api/admin/permissions -[2026-02-18 12:56:31,626][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:31,626][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:31,627][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:31,627][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:31,627][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:31,627][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:31,627][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:31,628][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:31,628][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:31,628][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:31,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:31,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:31,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:31,630][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:31,632][DEBUG][superset_tools_app] [api.admin.list_roles][Entry] -[2026-02-18 12:56:31,632][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] -[2026-02-18 12:56:31,632][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [api.admin.list_permissions][Entry] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [AuthRepository.list_permissions][Entry] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Coherence:OK] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Action] [AuthRepository.list_permissions][Exit] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Coherence:OK] -[2026-02-18 12:56:31,633][DEBUG][superset_tools_app] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Action] [api.admin.list_permissions][Exit] -[2026-02-18 12:56:31,633][INFO][superset_tools_app] Response status: 200 for /api/admin/roles -[2026-02-18 12:56:31,634][INFO][superset_tools_app] Response status: 200 for /api/admin/permissions -[2026-02-18 12:56:31,634][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:31,634][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:31,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:31,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:34,568][INFO][superset_tools_app] Incoming request: GET /api/settings -[2026-02-18 12:56:34,569][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:34,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:34,569][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:34,569][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:34,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:34,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:34,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_settings][Entry] -[2026-02-18 12:56:34,572][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_config][Entry] -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:56:34,572][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:56:34,573][INFO][superset_tools_app] Response status: 200 for /api/settings -[2026-02-18 12:56:34,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:34,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:34,598][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:34,598][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:34,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:34,599][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:34,599][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:34,599][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:34,600][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:34,600][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:34,600][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:34,600][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:34,600][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:34,601][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:34,602][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:34,602][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:34,614][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated -[2026-02-18 12:56:34,614][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:34,615][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:34,615][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:34,615][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:34,615][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:34,616][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:34,616][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:34,617][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] -[2026-02-18 12:56:34,617][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings -[2026-02-18 12:56:34,617][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] -[2026-02-18 12:56:34,617][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:56:34,617][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:56:34,617][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] -[2026-02-18 12:56:34,619][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] -[2026-02-18 12:56:34,619][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] -[2026-02-18 12:56:34,619][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] -[2026-02-18 12:56:34,620][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] -[2026-02-18 12:56:34,620][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated -[2026-02-18 12:56:34,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:34,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:36,602][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 12:56:36,603][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:36,603][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:36,603][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:36,603][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:36,603][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:36,604][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:36,604][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:36,604][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 12:56:36,604][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 12:56:36,604][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 12:56:36,605][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 12:56:36,606][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:36,606][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:36,618][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 12:56:36,618][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:36,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:36,619][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:36,619][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:36,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:36,619][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:36,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:56:36,621][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:36,621][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:36,621][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 12:56:36,622][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:36,622][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:56:36,631][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 12:56:36,632][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:56:36,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:56:36,633][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:56:36,633][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:56:36,633][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:56:36,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:56:36,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:56:36,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 12:56:36,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:56:36,635][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 12:56:36,636][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:56:36,636][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:56:36,641][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:56:36,641][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:56:36,641][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:56:36,641][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 12:56:36,641][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 12:56:36,641][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 12:56:36,642][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:56:36,642][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:56:36,642][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:56:36,642][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:56:39,180][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:56:39,180][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:56:39,180][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:56:39,180][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:39,180][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:39,678][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 12:56:39,678][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 12:56:39,678][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 12:56:39,678][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:56:39,679][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 12:56:40,170][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 12:56:40,170][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 12:56:40,170][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 12:56:40,171][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 12:56:40,171][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 12:56:40,171][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 12:56:40,171][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 12:56:40,171][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 12:56:40,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:56:40,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 12:57:28,147][INFO][superset_tools_app] Incoming request: GET /api/datasets/26 -[2026-02-18 12:57:28,150][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:57:28,151][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:57:28,151][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:57:28,152][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:57:28,152][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:57:28,153][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:57:28,153][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:57:28,155][DEBUG][superset_tools_app] [get_dataset_detail][Entry] env_id=ss1, dataset_id=26 -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_environments][Entry] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:57:28,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:57:28,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:57:28,156][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][Entry] -[2026-02-18 12:57:28,157][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:57:28,157][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:57:28,164][WARNING][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:57:28,164][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:57:28,164][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:57:28,164][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Entry] id=26 -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset][Entry] id=26 -[2026-02-18 12:57:28,165][INFO][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [get_dataset][Enter] Fetching dataset 26. -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [request][Entry] -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [headers][Entry] -[2026-02-18 12:57:28,165][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:57:28,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:57:28,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:57:28,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,487][ERROR][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:Failed] Failed to fetch dataset detail: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,487][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:Failed] 503: Failed to fetch dataset detail: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,488][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset detail: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 12:57:31,488][INFO][superset_tools_app] Response status: 503 for /api/datasets/26 -[2026-02-18 12:57:37,369][INFO][superset_tools_app] Incoming request: GET /api/datasets/26 -[2026-02-18 12:57:37,374][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:57:37,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:57:37,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:57:37,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:57:37,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:57:37,376][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:57:37,377][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_dataset_detail][Entry] env_id=ss1, dataset_id=26 -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_environments][Entry] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:57:37,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:57:37,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][Entry] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:57:37,378][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:57:37,383][WARNING][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:57:37,383][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:57:37,383][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:57:37,383][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Entry] id=26 -[2026-02-18 12:57:37,383][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset][Entry] id=26 -[2026-02-18 12:57:37,383][INFO][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [get_dataset][Enter] Fetching dataset 26. -[2026-02-18 12:57:37,383][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [request][Entry] -[2026-02-18 12:57:37,384][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:57:37,384][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:57:37,384][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [headers][Entry] -[2026-02-18 12:57:37,384][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:57:37,384][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:57:37,384][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:57:37,384][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:57:38,390][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:57:38,390][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:57:38,390][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:57:38,390][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:57:38,390][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:57:48,025][INFO][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [get_dataset][Exit] Got dataset 26. -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Coherence:OK] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Exit] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [request][Entry] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [headers][Entry] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:57:48,025][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:57:48,385][WARNING][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [get_dataset_detail][Warning] Failed to fetch related dashboards: 'str' object has no attribute 'get' -[2026-02-18 12:57:48,385][INFO][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [get_dataset_detail][Exit] Got dataset 26 with 0 columns and 0 linked dashboards -[2026-02-18 12:57:48,385][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Coherence:OK] -[2026-02-18 12:57:48,385][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Exit] -[2026-02-18 12:57:48,385][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:OK] Retrieved dataset 26 with 0 columns and 0 linked dashboards -[2026-02-18 12:57:48,385][ERROR][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:Failed] Failed to fetch dataset detail: 2 validation errors for DatasetDetailResponse -table_name - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -schema - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -[2026-02-18 12:57:48,386][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:Failed] 503: Failed to fetch dataset detail: 2 validation errors for DatasetDetailResponse -table_name - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -schema - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -[2026-02-18 12:57:48,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dataset detail: 2 validation errors for DatasetDetailResponse -table_name - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -schema - Input should be a valid string [type=string_type, input_value=None, input_type=NoneType] - For further information visit https://errors.pydantic.dev/2.12/v/string_type -[2026-02-18 12:57:48,386][INFO][superset_tools_app] Response status: 503 for /api/datasets/26 -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:58:27,874][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:58:27,874][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:58:28,465][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:58:28,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:28,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:28,465][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:58:28,468][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:28,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,470][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,471][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:28,472][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:28,708][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:28,709][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,709][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:58:28,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:58:28,711][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:28,711][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:29,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:29,036][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:29,036][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:58:29,037][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:58:29,037][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:58:29,037][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:58:29,037][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:58:29,038][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:29,038][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:58:29,038][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:58:29,039][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:29,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:29,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:29,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:58:29,057][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:58:29,057][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:58:29,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:29,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:29,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:29,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:29,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:29,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:29,059][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:29,059][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:58:29,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:29,060][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:58:29,060][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:58:29,060][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:58:29,061][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:58:29,063][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:58:29,064][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:58:29,081][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:58:29,081][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:58:29,082][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:58:29,082][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:58:29,082][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:58:29,082][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:58:29,082][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:58:29,082][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:58:29,083][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:29,083][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:29,084][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:58:29,084][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:58:29,084][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:58:29,084][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:58:29,146][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:58:29,147][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:29,147][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:29,359][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:58:29,360][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:29,360][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:58:29,361][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:58:29,361][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [shutdown_event][Entry] -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] -[2026-02-18 12:58:29,663][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] -[2026-02-18 12:58:29,663][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] -[2026-02-18 12:58:30,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:58:30,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:30,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:30,336][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 12:58:30,343][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 12:58:30,344][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 12:58:30,344][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 12:58:30,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 12:58:30,344][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 12:58:30,344][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,345][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,346][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,347][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,347][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,348][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,348][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 12:58:30,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,597][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,597][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,597][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 12:58:30,598][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 12:58:30,599][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 12:58:30,600][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,834][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,835][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,835][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 12:58:30,836][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 12:58:30,836][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 12:58:30,836][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 12:58:30,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 12:58:30,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:30,837][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:58:30,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 12:58:30,838][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 12:58:30,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 12:58:30,847][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 12:58:30,848][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:30,848][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 12:58:30,848][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 12:58:30,848][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 12:58:30,849][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 12:58:30,849][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 12:58:30,849][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 12:58:30,849][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 12:58:30,860][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 12:58:30,860][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 12:58:30,861][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] -[2026-02-18 12:58:30,862][INFO][superset_tools_app] SchedulerService initialized -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:30,862][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] -[2026-02-18 12:58:30,862][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] -[2026-02-18 12:58:30,862][INFO][superset_tools_app] ResourceService initialized -[2026-02-18 12:58:30,896][DEBUG][superset_tools_app] [GitService.__init__][Entry] -[2026-02-18 12:58:30,896][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 12:58:30,896][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 12:58:31,018][DEBUG][superset_tools_app] [startup_event][Entry] -[2026-02-18 12:58:31,018][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] -[2026-02-18 12:58:31,018][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] -[2026-02-18 12:58:31,018][DEBUG][superset_tools_app] [SchedulerService.start][Entry] -[2026-02-18 12:58:31,019][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * -[2026-02-18 12:58:31,019][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] -[2026-02-18 12:58:31,019][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] -[2026-02-18 12:58:37,504][INFO][superset_tools_app] Incoming request: GET /api/datasets/26 -[2026-02-18 12:58:37,506][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 12:58:37,507][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 12:58:37,511][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 12:58:37,512][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 12:58:37,512][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 12:58:37,516][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 12:58:37,517][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [get_dataset_detail][Entry] env_id=ss1, dataset_id=26 -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_environments][Entry] -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:58:37,523][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 12:58:37,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [__init__][Entry] -[2026-02-18 12:58:37,524][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][Entry] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 12:58:37,524][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 12:58:37,532][WARNING][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Entry] id=26 -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset][Entry] id=26 -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [get_dataset][Enter] Fetching dataset 26. -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [request][Entry] -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [headers][Entry] -[2026-02-18 12:58:37,532][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 12:58:37,532][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 12:58:37,961][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 12:58:37,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 12:58:37,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 12:58:37,961][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:58:37,961][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:58:38,291][INFO][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [get_dataset][Exit] Got dataset 26. -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Coherence:OK] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Action] [SupersetClient.get_dataset][Exit] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [request][Entry] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [headers][Entry] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 12:58:38,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 12:58:38,378][WARNING][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [get_dataset_detail][Warning] Failed to fetch related dashboards: 'str' object has no attribute 'get' -[2026-02-18 12:58:38,378][INFO][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [get_dataset_detail][Exit] Got dataset 26 with 19 columns and 0 linked dashboards -[2026-02-18 12:58:38,378][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Coherence:OK] -[2026-02-18 12:58:38,378][DEBUG][superset_tools_app] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Action] [SupersetClient.get_dataset_detail][Exit] -[2026-02-18 12:58:38,378][INFO][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:OK] Retrieved dataset 26 with 19 columns and 0 linked dashboards -[2026-02-18 12:58:38,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Coherence:OK] -[2026-02-18 12:58:38,378][DEBUG][superset_tools_app] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Action] [get_dataset_detail][Exit] -[2026-02-18 12:58:38,379][INFO][superset_tools_app] Response status: 200 for /api/datasets/26 -[2026-02-18 12:58:38,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 12:58:38,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:03:28,967][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:03:28,969][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:03:28,969][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:03:28,969][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:03:28,969][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:03:28,970][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:03:28,971][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:03:28,971][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:03:28,974][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:03:28,975][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:03:28,975][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:28,975][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:28,975][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:03:28,975][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:28,975][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:28,975][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:03:28,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:03:28,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:03:28,986][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 13:03:28,988][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:03:28,988][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:03:28,988][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:03:28,988][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:03:28,989][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:03:28,990][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:03:28,991][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:03:28,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:03:28,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:03:28,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:03:28,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:03:28,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:03:28,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 13:03:28,995][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:03:28,995][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:03:29,001][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:03:29,001][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:03:29,001][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:03:29,001][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 13:03:29,001][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 13:03:29,001][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 13:03:29,001][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 13:03:29,001][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:03:29,001][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:03:29,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:03:29,002][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:03:29,002][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:03:29,002][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:03:29,551][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:03:29,552][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:03:29,552][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:03:29,552][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:03:29,552][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:03:29,895][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:03:30,298][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,298][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,299][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,299][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,300][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,302][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 13:03:30,302][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,307][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 13:03:30,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:03:30,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 13:03:30,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 13:03:30,308][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 13:03:30,309][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 13:03:30,309][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 13:03:30,310][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 13:03:30,311][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:03:30,311][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:03:30,311][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 13:03:30,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:03:30,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:03:33,846][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:03:33,846][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:03:33,847][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:03:33,847][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:03:33,847][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:03:33,847][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:03:33,848][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:03:33,848][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:03:33,848][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:03:33,848][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:03:33,848][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:03:33,849][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:03:33,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:03:33,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:03:33,862][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:03:33,863][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:03:33,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:03:33,863][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:03:33,863][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:03:33,863][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:03:33,864][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:03:33,864][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:03:33,865][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:33,865][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:33,865][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:03:33,866][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:03:33,866][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:03:33,876][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:03:33,877][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:03:33,877][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:03:33,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:03:33,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:03:33,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:03:33,878][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:03:33,878][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:03:33,880][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:03:33,881][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:03:33,881][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:03:33,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:03:33,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:03:33,882][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:03:33,882][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:03:33,882][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:03:33,887][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:03:33,888][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:03:33,888][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:03:34,300][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:03:34,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:03:34,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:03:34,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:03:34,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:03:34,443][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:03:34,444][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:03:34,594][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:03:34,594][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:03:34,595][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:03:34,595][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:03:34,595][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:03:34,597][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:03:34,597][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:03:34,597][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:03:34,597][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:03:34,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:03:34,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:06:33,233][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:06:33,234][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:06:33,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:06:33,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:06:33,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:06:33,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:06:33,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:06:33,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:06:33,239][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:06:33,239][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:06:33,239][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:06:33,239][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:06:33,239][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:06:33,240][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:06:33,240][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:06:33,240][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:06:33,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:06:33,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:06:33,251][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:06:33,252][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:06:33,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:06:33,252][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:06:33,253][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:06:33,253][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:06:33,254][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:06:33,254][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:06:33,257][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:06:33,257][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:06:33,257][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:06:33,257][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:06:33,257][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:06:33,258][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:06:33,258][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:06:33,258][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:06:33,265][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:06:33,265][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:06:33,265][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:06:33,638][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:06:33,638][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:06:33,638][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:06:33,638][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:06:33,638][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:06:33,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:06:34,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:06:34,002][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:06:34,002][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:06:34,002][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:06:34,002][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:06:34,002][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:06:34,002][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:06:34,003][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:06:34,003][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:06:34,003][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:06:34,005][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:06:34,005][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:06:34,005][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:06:34,006][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:06:34,008][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:06:34,009][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:24,672][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:07:24,673][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:24,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:24,674][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:24,674][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:24,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:24,675][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:24,675][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:24,675][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:07:24,676][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:07:24,676][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:07:24,677][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:07:24,678][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:24,678][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:24,691][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:07:24,692][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:24,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:24,693][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:24,693][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:24,693][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:24,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:24,694][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:24,695][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:24,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:24,695][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:07:24,696][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:24,696][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:24,709][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:07:24,711][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:24,711][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:24,712][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:24,712][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:24,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:24,713][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:24,714][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:24,716][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:24,717][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:24,717][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:07:24,717][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:07:24,718][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:07:24,725][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:07:24,725][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:07:24,725][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:07:24,725][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:07:24,725][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:07:24,726][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:07:24,726][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:07:24,726][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:07:24,726][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:07:24,726][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:07:25,105][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:07:25,106][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:07:25,106][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:07:25,106][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:25,106][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [_handle_network_error][Entry] -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [NetworkError.__init__][Entry] -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Action] [_handle_network_error][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,389][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Connection error | Context: {'url': 'https://superset.bebesh.ru/api/v1/dataset/'} -[2026-02-18 13:07:28,390][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 13:07:30,271][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:07:30,271][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:30,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:30,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:30,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:30,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:30,273][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:30,273][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:30,274][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:07:30,274][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:07:30,274][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:07:30,275][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:07:30,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:30,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:30,290][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:07:30,291][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:30,291][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:30,291][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:30,291][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:30,291][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:30,292][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:30,292][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:30,293][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:30,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:30,293][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:07:30,294][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:30,294][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:30,301][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:07:30,302][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:30,302][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:30,302][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:30,303][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:30,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:30,303][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:30,303][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:30,304][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:30,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:30,305][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:07:30,305][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:07:30,310][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:07:30,310][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:07:30,310][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:07:30,310][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:07:30,310][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:07:30,310][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:07:30,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:07:30,310][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:07:30,310][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:07:30,311][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:07:30,311][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:07:30,311][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:07:30,311][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:07:30,719][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:07:30,719][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:07:30,720][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:07:30,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:30,720][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:30,921][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:30,922][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:07:30,922][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:30,922][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:07:31,103][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:07:31,103][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:07:31,103][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:07:31,104][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:07:31,104][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:07:31,105][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:07:31,105][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:07:31,105][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:31,105][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,058][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:07:46,059][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,060][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,060][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,060][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,061][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,062][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,063][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:07:46,063][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:07:46,063][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:07:46,065][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:07:46,070][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,071][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,111][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:07:46,112][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,113][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,113][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,117][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,120][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,120][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:07:46,120][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,121][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,121][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:07:46,125][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,126][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,160][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:07:46,161][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,162][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,162][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,162][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,164][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,166][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,168][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:46,169][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:46,169][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:46,170][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:07:46,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:46,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:46,170][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:07:46,170][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:07:46,170][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:07:46,178][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:07:46,178][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:07:46,178][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:07:46,178][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:07:46,178][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:07:46,179][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:07:46,179][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:07:46,179][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:07:46,179][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:07:46,179][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:07:46,564][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:07:46,566][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:07:46,566][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:07:46,566][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:46,566][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:46,725][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:46,892][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:07:46,893][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:07:46,893][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:07:46,893][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:07:46,895][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:07:46,895][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:07:46,895][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:07:46,895][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:07:46,897][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:07:46,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,899][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,900][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,900][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,900][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,900][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,902][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:07:46,903][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:07:46,903][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:07:46,905][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:07:46,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,910][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:07:46,911][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,912][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,912][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,912][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,912][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,913][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,913][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,913][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:07:46,913][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:07:46,914][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:07:46,916][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:07:46,918][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,918][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,934][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:07:46,935][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,935][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,935][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,935][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,935][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,936][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,936][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,938][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,938][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,938][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:07:46,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,942][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:07:46,943][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,943][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,943][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,943][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,946][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,946][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:07:46,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,946][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:07:46,947][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,947][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,947][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:07:46,948][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 13:07:46,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:46,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:46,950][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:46,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:46,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:46,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:46,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:46,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:46,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:46,953][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:46,954][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:46,954][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 13:07:46,954][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:07:46,955][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:07:46,959][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:07:46,960][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:07:46,960][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:07:47,453][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:07:47,453][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:07:47,453][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:07:47,453][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:47,453][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:47,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:07:47,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:47,815][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:07:48,307][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,307][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,308][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,308][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,309][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 13:07:48,309][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 13:07:48,314][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,314][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,314][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,314][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,315][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 13:07:48,315][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,316][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:48,316][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 13:07:48,316][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 13:07:48,316][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 13:07:48,317][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 13:07:48,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:07:48,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:07:48,317][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 13:07:48,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:48,318][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:07:48,320][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 13:07:48,322][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:07:48,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:07:48,322][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:07:48,322][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:07:48,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:07:48,323][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:07:48,323][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 13:07:48,325][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:48,325][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 13:07:48,326][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:07:48,326][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:07:48,330][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:07:48,331][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:07:48,331][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 13:07:48,331][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:48,331][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:07:48,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:07:48,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:07:48,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:07:48,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:07:48,688][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:07:48,688][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:07:48,688][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:07:48,688][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:48,688][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:48,819][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:07:48,819][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:07:48,819][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:07:48,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:07:49,006][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,006][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,006][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,007][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,007][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,007][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 13:07:49,008][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,012][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,012][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,012][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,012][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 13:07:49,012][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,013][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,013][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,013][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 13:07:49,013][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 13:07:49,013][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 13:07:49,013][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 13:07:49,014][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 13:07:49,014][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 13:07:49,014][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 13:07:49,014][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 13:07:49,015][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:07:49,015][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:08:00,271][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:08:00,272][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:08:00,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:08:00,273][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:08:00,273][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:08:00,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:08:00,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:08:00,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:08:00,276][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:08:00,276][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:08:00,276][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:08:00,277][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:08:00,278][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:08:00,278][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:08:00,291][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:08:00,293][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:08:00,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:08:00,293][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:08:00,293][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:08:00,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:08:00,294][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:08:00,294][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:08:00,295][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:08:00,295][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:08:00,295][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:08:00,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:08:00,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:08:00,304][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:08:00,305][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:08:00,305][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:08:00,306][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:08:00,306][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:08:00,306][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:08:00,307][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:08:00,307][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:08:00,309][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:08:00,310][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:08:00,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:08:00,311][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:08:00,311][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:08:00,317][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:08:00,317][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:08:00,317][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:08:00,317][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:08:00,317][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:08:00,317][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:08:00,318][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:08:00,318][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:08:00,318][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:08:00,318][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:08:00,663][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:08:00,664][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:08:00,664][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:08:00,664][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:08:00,664][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:08:00,780][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:08:00,781][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:08:00,913][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:08:00,914][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:08:00,914][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:08:00,914][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:08:00,915][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:08:00,915][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:08:00,915][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:08:00,916][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:08:00,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:08:00,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:12:27,647][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:12:27,649][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:27,649][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:27,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:27,650][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:27,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:27,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:27,651][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:27,651][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:12:27,652][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:12:27,652][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:12:27,654][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:12:27,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:12:27,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:12:27,674][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:12:27,675][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:27,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:27,675][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:27,676][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:27,676][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:27,677][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:27,677][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:27,678][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:12:27,678][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:12:27,678][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:27,678][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:27,679][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:12:27,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:27,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:27,679][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:12:27,680][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:12:27,680][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:12:27,688][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:12:27,689][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:27,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:27,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:27,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:27,690][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:27,691][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:27,691][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:27,694][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:27,694][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:12:27,694][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:12:27,699][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:12:27,699][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:12:27,699][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:12:27,699][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:12:27,699][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:12:27,700][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:12:27,700][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:12:27,700][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:12:27,700][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,309][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,310][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')) | Context: {} -[2026-02-18 13:12:31,310][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 13:12:32,305][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:12:32,306][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:32,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:32,307][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:32,307][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:32,307][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:32,308][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:32,308][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:32,309][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:12:32,309][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:32,310][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:32,310][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:12:32,310][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:12:32,316][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:12:32,316][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:12:32,316][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:12:32,316][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:12:32,316][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:12:32,317][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:12:32,317][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:12:32,317][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:12:32,317][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:12:35,635][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 13:12:35,635][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:35,637][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 13:12:36,805][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:12:36,806][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:36,806][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:36,806][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:36,807][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:36,807][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:36,807][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:36,808][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:36,809][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:36,809][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:36,810][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:12:36,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:36,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:36,810][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:12:36,810][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:12:36,810][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:12:36,815][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:12:36,815][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:12:36,815][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:12:36,815][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:12:36,815][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:12:36,816][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:12:36,816][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:12:36,816][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:12:36,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:12:36,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:12:36,816][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:12:40,143][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][ERROR][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,144][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch datasets: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1033)'))) | Context: {} -[2026-02-18 13:12:40,145][INFO][superset_tools_app] Response status: 503 for /api/datasets -[2026-02-18 13:12:40,895][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:12:40,897][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:12:40,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:12:40,898][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:12:40,898][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:12:40,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:12:40,899][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:12:40,899][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:12:40,900][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:12:40,900][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:12:40,900][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:40,901][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:40,901][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:12:40,901][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:12:40,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:12:40,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:12:40,902][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:12:40,902][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:12:40,902][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:12:40,907][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:12:40,907][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:12:40,908][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:12:40,908][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:12:40,908][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:12:40,908][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:12:40,908][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:12:40,908][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:12:42,435][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:12:42,435][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:12:42,435][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:12:42,435][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:12:42,435][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:12:42,548][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:12:42,549][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:12:42,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:12:42,698][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:12:42,698][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:12:42,698][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:12:42,698][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:12:42,699][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:12:42,699][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:12:42,699][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:12:42,699][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:12:42,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:12:42,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:14:55,620][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:14:55,621][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:14:55,622][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:14:55,622][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:14:55,622][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:14:55,622][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:14:55,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:14:55,623][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:14:55,624][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:14:55,624][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:14:55,624][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:14:55,625][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:14:55,626][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:14:55,626][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:14:55,641][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:14:55,642][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:14:55,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:14:55,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:14:55,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:14:55,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:14:55,644][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:14:55,644][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:14:55,645][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:14:55,646][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:14:55,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:14:55,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:14:55,646][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:14:55,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:14:55,646][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:14:55,646][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:14:55,647][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:14:55,647][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:14:55,654][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:14:55,654][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:14:55,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:14:55,655][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:14:55,655][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:14:55,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:14:55,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:14:55,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:14:55,657][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:14:55,657][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:14:55,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:14:55,657][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:14:55,657][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:14:55,658][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:14:55,658][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:14:55,658][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:14:55,664][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:14:55,664][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:14:55,664][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:14:55,665][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:14:55,665][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:14:55,665][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:14:55,665][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:14:55,666][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:14:56,004][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:14:56,004][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:14:56,004][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:14:56,004][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:14:56,004][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:14:56,112][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:14:56,241][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:14:56,241][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:14:56,241][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:14:56,242][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:14:56,242][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:14:56,242][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:14:56,243][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:14:56,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:14:56,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:21:24,524][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:21:24,525][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:21:24,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:21:24,525][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:21:24,525][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:21:24,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:21:24,526][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:21:24,526][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:21:24,529][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:24,529][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:24,530][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:21:24,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:21:24,531][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:21:24,535][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:21:24,537][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:21:24,537][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:21:24,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:21:24,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:21:24,538][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:21:24,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:21:24,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:21:24,541][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:24,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:24,542][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:21:24,542][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:21:24,544][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 13:21:24,544][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 13:21:24,545][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:21:24,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:21:24,545][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:21:24,545][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:21:24,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:21:24,546][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:21:24,546][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:21:24,547][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:21:24,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:21:24,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:21:24,548][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:21:24,553][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:21:24,553][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:21:24,553][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:21:24,554][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:21:24,554][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:21:24,554][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:21:24,554][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:21:24,554][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:21:24,869][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:21:24,869][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:21:24,869][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:21:24,870][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:21:24,870][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:21:24,975][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:21:24,976][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:21:25,109][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:21:25,110][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:21:25,110][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:21:25,110][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:21:25,111][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:21:25,111][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:21:25,111][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:21:25,111][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:21:25,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:21:25,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:21:25,114][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:21:25,115][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:21:25,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:21:25,116][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:21:25,116][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:21:25,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:21:25,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:21:25,117][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:21:25,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:21:25,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:21:25,118][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:21:25,119][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:21:25,119][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:21:25,122][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:21:25,122][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:21:25,122][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:21:25,123][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:21:25,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:21:25,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:21:25,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:21:25,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:21:25,467][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:21:25,467][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:21:25,467][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:21:25,467][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:21:25,468][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:21:25,568][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:21:25,569][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:21:25,692][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:21:25,692][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:21:25,692][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:21:25,692][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:21:25,693][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:21:25,693][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:21:25,693][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:21:25,693][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:21:25,693][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:21:25,693][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:21:25,693][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:21:25,694][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:21:25,694][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:21:25,694][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:21:25,694][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:21:25,694][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:23:05,069][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 13:23:05,070][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:23:05,071][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:23:05,071][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:23:05,071][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:23:05,071][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:23:05,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:23:05,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:23:05,072][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 13:23:05,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 13:23:05,072][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 13:23:05,074][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 13:23:05,075][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:23:05,075][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:23:05,104][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 13:23:05,106][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:23:05,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:23:05,106][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:23:05,106][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:23:05,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:23:05,108][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:23:05,108][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:23:05,109][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:23:05,110][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 13:23:05,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:23:05,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:23:05,110][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 13:23:05,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:23:05,110][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:23:05,110][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 13:23:05,111][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:23:05,111][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 13:23:05,130][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 13:23:05,133][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 13:23:05,134][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 13:23:05,135][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 13:23:05,135][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 13:23:05,135][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 13:23:05,136][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 13:23:05,136][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 13:23:05,138][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:23:05,139][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:23:05,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 13:23:05,140][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 13:23:05,140][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 13:23:05,149][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 13:23:05,149][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 13:23:05,149][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 13:23:05,149][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 13:23:05,149][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 13:23:05,150][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 13:23:05,150][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 13:23:05,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 13:23:05,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 13:23:05,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 13:23:05,466][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 13:23:05,466][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 13:23:05,466][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 13:23:05,466][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:23:05,466][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:23:05,570][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 13:23:05,571][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 13:23:05,680][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 13:23:05,680][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 13:23:05,680][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 13:23:05,680][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:23:05,681][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:23:05,681][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 13:23:05,681][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 13:23:05,681][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 13:23:05,681][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 13:23:05,681][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 13:23:05,682][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 13:23:05,682][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 13:23:05,682][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 13:23:05,682][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 13:23:05,683][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 13:23:05,683][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 15:09:32,955][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 15:09:32,957][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 15:09:32,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 15:09:32,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 15:09:32,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 15:09:32,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 15:09:32,959][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 15:09:32,960][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 15:09:32,960][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 15:09:32,960][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 15:09:32,960][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 15:09:32,962][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 15:09:32,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 15:09:32,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 15:09:32,990][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 15:09:32,990][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 15:09:32,990][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 15:09:32,991][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 15:09:32,991][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 15:09:32,991][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 15:09:32,992][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 15:09:32,992][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 15:09:32,993][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 15:09:32,993][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 15:09:32,994][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 15:09:32,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 15:09:32,995][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 15:09:33,003][INFO][superset_tools_app] Incoming request: GET /api/datasets -[2026-02-18 15:09:33,004][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 15:09:33,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 15:09:33,005][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 15:09:33,005][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 15:09:33,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 15:09:33,006][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 15:09:33,007][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 15:09:33,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] -[2026-02-18 15:09:33,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 15:09:33,008][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 15:09:33,014][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_total_object_count][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 15:09:33,015][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 15:09:33,015][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 15:09:34,269][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 15:09:34,269][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 15:09:34,269][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 15:09:34,269][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 15:09:34,269][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 15:09:34,825][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 15:09:34,826][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 15:09:34,826][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 15:09:34,826][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 15:09:35,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 15:09:35,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 15:09:35,101][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] -[2026-02-18 15:09:35,101][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] -[2026-02-18 15:09:35,101][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] -[2026-02-18 15:09:35,102][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) -[2026-02-18 15:09:35,102][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] -[2026-02-18 15:09:35,103][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] -[2026-02-18 15:09:35,103][INFO][superset_tools_app] Response status: 200 for /api/datasets -[2026-02-18 15:09:35,103][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 15:09:35,103][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:25:30,350][INFO][superset_tools_app] Incoming request: GET /api/auth/me -[2026-02-18 17:25:30,351][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:30,351][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:30,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:30,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:30,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:30,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:30,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:30,353][DEBUG][superset_tools_app] [api.auth.me][Entry] -[2026-02-18 17:25:30,353][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] -[2026-02-18 17:25:30,353][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] -[2026-02-18 17:25:30,354][INFO][superset_tools_app] Response status: 200 for /api/auth/me -[2026-02-18 17:25:30,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:25:30,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:25:30,368][INFO][superset_tools_app] Incoming request: GET /api/settings/environments -[2026-02-18 17:25:30,369][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:30,369][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:30,369][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:30,369][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:30,369][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:30,370][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:30,370][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:30,371][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 17:25:30,372][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments -[2026-02-18 17:25:30,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:30,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:30,372][DEBUG][superset_tools_app] [get_environments][Entry] -[2026-02-18 17:25:30,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:30,372][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:30,372][INFO][superset_tools_app] Response status: 200 for /api/settings/environments -[2026-02-18 17:25:30,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:25:30,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:25:30,382][INFO][superset_tools_app] Incoming request: GET /api/dashboards -[2026-02-18 17:25:30,383][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:30,383][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:30,383][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:30,383][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:30,383][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:30,384][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:30,384][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:30,385][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 -[2026-02-18 17:25:30,385][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] -[2026-02-18 17:25:30,385][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 17:25:30,386][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] -[2026-02-18 17:25:30,386][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:25:30,386][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:25:30,393][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:25:30,393][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:25:30,393][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:25:32,931][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:25:32,931][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:25:32,931][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:25:32,931][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:32,931][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:25:34,634][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:34,635][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:25:35,735][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] -[2026-02-18 17:25:35,735][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,736][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,736][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] -[2026-02-18 17:25:35,737][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] -[2026-02-18 17:25:35,740][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,740][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,740][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,740][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,740][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist -[2026-02-18 17:25:35,740][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,741][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,741][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,741][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found -[2026-02-18 17:25:35,741][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,742][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,742][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,742][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist -[2026-02-18 17:25:35,742][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] -[2026-02-18 17:25:35,743][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found -[2026-02-18 17:25:35,743][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] -[2026-02-18 17:25:35,743][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] -[2026-02-18 17:25:35,744][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) -[2026-02-18 17:25:35,744][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 17:25:35,744][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 17:25:35,744][INFO][superset_tools_app] Response status: 200 for /api/dashboards -[2026-02-18 17:25:35,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:25:35,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:25:47,007][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-18 17:25:47,008][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-18 17:25:47,009][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-18 17:25:47,010][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-18 17:25:47,010][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-18 17:25:47,010][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-18 17:25:47,011][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:47,011][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:47,011][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:47,011][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:47,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:25:47,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:47,015][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:25:47,015][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:47,015][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:25:47,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:47,017][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:47,017][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:47,017][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:25:47,017][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:25:47,018][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:25:47,018][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:25:47,018][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:25:47,022][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 17:25:47,022][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:25:47,022][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:25:47,022][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:25:47,022][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:25:47,022][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:25:47,026][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:25:47,026][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:25:47,026][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:25:47,026][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:25:47,026][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:25:47,026][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:25:47,027][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:25:48,381][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:25:48,381][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:25:48,381][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:25:48,381][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:48,381][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:49,490][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:25:49,490][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:25:49,490][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:25:49,490][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:49,491][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:25:50,164][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:25:50,164][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:25:50,164][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:25:50,165][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:25:50,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 17:25:50,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 17:25:50,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:25:53,610][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:25:53,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:25:53,610][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:25:53,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:53,610][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:57,160][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:25:57,161][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:25:57,161][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:25:58,279][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:25:58,279][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:25:58,280][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-18 17:25:58,280][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-18 17:25:58,282][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-18 17:25:58,283][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-18 17:25:58,283][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-18 17:25:58,283][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-18 17:25:58,285][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate -[2026-02-18 17:25:58,286][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-18 17:25:58,286][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 17:25:58,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:25:58,286][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:25:58,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:25:58,287][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:25:58,287][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:25:58,287][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:25:58,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 17:25:58,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:00,252][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:00,252][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:00,252][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:00,252][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:00,253][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:00,735][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:00,735][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:00,735][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:00,735][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:00,735][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:00,736][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:01,348][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:01,348][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:01,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:01,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:01,351][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:01,355][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 17:26:01,355][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:01,355][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:26:01,355][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:01,355][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:01,355][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:26:01,356][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:01,356][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:02,955][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:02,955][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:02,956][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:02,956][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:02,956][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:03,604][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:03,605][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:04,096][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:04,096][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:04,096][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:04,097][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:04,097][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:04,097][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:04,097][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:04,098][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-18 17:26:04,098][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-18 17:26:04,099][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:04,100][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 17:26:04,100][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:04,101][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 17:26:04,101][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:26:04,101][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:26:04,102][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:26:04,102][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:26:04,102][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:26:04,102][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:26:04,103][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 17:26:04,104][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-18 17:26:04,109][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 29212f07-6577-4c4a-8b43-0c188d67ce06 created and scheduled for execution -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] -[2026-02-18 17:26:04,109][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None for 1 dashboards -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:26:04,109][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:26:04,110][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 29212f07-6577-4c4a-8b43-0c188d67ce06 for plugin 'Superset Dashboard Migration' -[2026-02-18 17:26:04,110][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,113][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-18 17:26:04,114][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-18 17:26:04,114][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:04,114][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:04,115][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-18 17:26:04,115][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:04,115][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:04,118][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 17:26:04,118][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:04,118][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:04,118][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-18 17:26:04,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 17:26:04,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:04,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:04,118][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] -[2026-02-18 17:26:04,118][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:04,118][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:04,119][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:04,119][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] -[2026-02-18 17:26:04,119][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:04,119][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:04,122][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:04,122][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:04,122][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] -[2026-02-18 17:26:04,122][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. -[2026-02-18 17:26:04,122][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:04,122][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:04,123][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:04,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:26:04,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:04,123][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:05,671][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:05,671][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:05,672][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:05,672][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:05,672][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:05,756][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:05,759][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-18 17:26:05,759][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-18 17:26:06,396][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:06,397][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:07,213][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:07,213][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:07,214][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 29212f07-6577-4c4a-8b43-0c188d67ce06 completed successfully -[2026-02-18 17:26:07,214][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] -[2026-02-18 17:26:07,214][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:26:07,214][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:26:07,215][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:07,215][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] -[2026-02-18 17:26:07,215][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] -[2026-02-18 17:26:07,215][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:07,217][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] -[2026-02-18 17:26:07,217][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] -[2026-02-18 17:26:07,217][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=29212f07-6577-4c4a-8b43-0c188d67ce06 -[2026-02-18 17:26:07,218][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] -[2026-02-18 17:26:07,219][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] -[2026-02-18 17:26:07,219][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 29212f07-6577-4c4a-8b43-0c188d67ce06 execution finished with status: TaskStatus.SUCCESS -[2026-02-18 17:26:07,219][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] -[2026-02-18 17:26:07,219][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] -[2026-02-18 17:26:07,219][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate -[2026-02-18 17:26:07,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:07,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:26:07,227][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] -[2026-02-18 17:26:07,228][INFO][superset_tools_app] WebSocket connection accepted for task id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None (source=None, level=None) -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] -[2026-02-18 17:26:07,228][INFO][superset_tools_app] Starting log stream for task id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=id='29212f07-6577-4c4a-8b43-0c188d67ce06' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {}} input_required=False input_request=None result=None -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] -[2026-02-18 17:26:07,228][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] -[2026-02-18 17:26:24,669][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings -[2026-02-18 17:26:24,669][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases -[2026-02-18 17:26:24,669][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases -[2026-02-18 17:26:24,670][DEBUG][superset_tools_app] [MappingService.__init__][Entry] -[2026-02-18 17:26:24,670][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] -[2026-02-18 17:26:24,670][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:26:24,671][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:26:24,672][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:26:24,673][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:26:24,675][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:26:24,675][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:24,675][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:24,679][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. -[2026-02-18 17:26:24,679][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:24,679][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:26:24,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:24,679][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] -[2026-02-18 17:26:24,679][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:24,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:24,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:24,680][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] -[2026-02-18 17:26:24,680][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:24,680][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:24,684][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:24,684][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:26,439][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:26,440][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:26,440][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:26,440][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:26,440][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:27,049][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:27,050][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:27,050][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:27,432][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:27,432][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:26:27,433][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:27,433][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:27,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 17:26:27,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:27,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:28,635][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:28,635][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:28,636][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:28,636][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:28,636][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:29,112][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:29,112][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:29,112][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:29,113][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:29,734][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] -[2026-02-18 17:26:29,734][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] -[2026-02-18 17:26:29,736][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions -[2026-02-18 17:26:29,736][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] -[2026-02-18 17:26:29,736][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] -[2026-02-18 17:26:29,736][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:29,737][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:29,737][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:29,737][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:29,740][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:29,741][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:29,741][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:31,529][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:31,529][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:31,530][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:31,530][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:31,530][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:32,564][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:32,564][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:32,564][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:32,564][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:32,564][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:32,565][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:33,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:33,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:33,508][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:33,508][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:33,509][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:33,509][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:33,509][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:33,510][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings -[2026-02-18 17:26:33,511][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:33,512][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:33,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:26:33,513][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [_init_session][Entry] -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] -[2026-02-18 17:26:33,513][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] -[2026-02-18 17:26:33,518][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. -[2026-02-18 17:26:33,518][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] -[2026-02-18 17:26:33,518][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_total_object_count][Entry] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [fetch_paginated_count][Entry] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [request][Entry] -[2026-02-18 17:26:33,518][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:33,519][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:33,519][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [headers][Entry] -[2026-02-18 17:26:33,519][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] -[2026-02-18 17:26:33,519][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 -[2026-02-18 17:26:33,519][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login -[2026-02-18 17:26:33,519][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} -[2026-02-18 17:26:35,256][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. -[2026-02-18 17:26:35,256][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] -[2026-02-18 17:26:35,256][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] -[2026-02-18 17:26:35,256][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:35,256][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:36,023][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Coherence:OK] -[2026-02-18 17:26:36,023][DEBUG][superset_tools_app] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Action] [fetch_paginated_count][Exit] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Coherence:OK] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Action] [_fetch_total_object_count][Exit] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] -[2026-02-18 17:26:36,024][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] -[2026-02-18 17:26:36,692][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] -[2026-02-18 17:26:36,692][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] -[2026-02-18 17:26:36,697][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases -[2026-02-18 17:26:36,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:36,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:26:36,698][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:36,698][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 17:26:36,698][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] -[2026-02-18 17:26:36,698][DEBUG][superset_tools_app] [get_auth_db][Exit] -[2026-02-18 17:29:32,600][INFO][superset_tools_app] Incoming request: POST /api/mappings -[2026-02-18 17:29:32,601][DEBUG][superset_tools_app] [get_db][Entry] -[2026-02-18 17:29:32,602][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:Failed] 401: Not authenticated -[2026-02-18 17:29:32,602][INFO][superset_tools_app] Response status: 401 for /api/mappings -[2026-02-18 17:31:40,086][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 17:31:40,088][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:31:40,088][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 17:31:40,088][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 17:31:40,088][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:31:40,089][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:31:40,089][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_FAILED:admin -[2026-02-18 17:31:40,280][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:31:40.280686][LOGIN_FAILED] User: admin Details: {'reason': 'Invalid credentials'} -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 17:31:40,280][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:Failed] 401: Incorrect username or password -[2026-02-18 17:31:40,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Incorrect username or password -[2026-02-18 17:31:40,281][INFO][superset_tools_app] Response status: 401 for /api/auth/login -[2026-02-18 17:32:30,048][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 17:32:30,049][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:32:30,049][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 17:32:30,049][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 17:32:30,049][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:32:30,050][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:32:30,050][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:32:30,225][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 17:32:30,227][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 17:32:30,227][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 17:32:30,227][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 17:32:30,227][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 17:32:30,228][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:agent_admin -[2026-02-18 17:32:30,228][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:32:30.228667][LOGIN_SUCCESS] User: agent_admin Details: {'source': 'LOCAL'} -[2026-02-18 17:32:30,228][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 17:32:30,228][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 17:32:30,228][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 17:32:30,229][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 17:32:30,229][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 17:32:30,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:32:30,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:32:30,232][INFO][superset_tools_app] Incoming request: POST /api/mappings -[2026-02-18 17:32:30,232][DEBUG][superset_tools_app] [get_db][Entry] -[2026-02-18 17:32:30,232][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_auth_db][Entry] -[2026-02-18 17:32:30,233][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:32:30,233][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:32:30,233][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:32:30,233][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:32:30,233][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:32:30,234][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:32:30,234][DEBUG][superset_tools_app] [create_mapping][Entry] -[2026-02-18 17:32:30,238][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Coherence:OK] -[2026-02-18 17:32:30,239][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Exit] -[2026-02-18 17:32:30,239][INFO][superset_tools_app] Response status: 200 for /api/mappings -[2026-02-18 17:32:30,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:32:30,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:32:30,240][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 17:32:30,240][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 17:32:51,768][INFO][superset_tools_app] Incoming request: POST /api/auth/login -[2026-02-18 17:32:51,769][DEBUG][superset_tools_app] [get_auth_db][Entry] -[2026-02-18 17:32:51,769][DEBUG][superset_tools_app] [api.auth.login][Entry] -[2026-02-18 17:32:51,769][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] -[2026-02-18 17:32:51,769][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:32:51,770][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:32:51,770][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:32:51,948][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] -[2026-02-18 17:32:51,950][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] -[2026-02-18 17:32:51,950][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] -[2026-02-18 17:32:51,950][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] -[2026-02-18 17:32:51,950][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:agent_admin -[2026-02-18 17:32:51,951][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:32:51.951162][LOGIN_SUCCESS] User: agent_admin Details: {'source': 'LOCAL'} -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] -[2026-02-18 17:32:51,951][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] -[2026-02-18 17:32:51,952][INFO][superset_tools_app] Response status: 200 for /api/auth/login -[2026-02-18 17:32:51,952][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:32:51,952][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:32:51,955][INFO][superset_tools_app] Incoming request: POST /api/mappings -[2026-02-18 17:32:51,955][INFO][superset_tools_app] Incoming request: POST /api/mappings -[2026-02-18 17:32:51,956][DEBUG][superset_tools_app] [get_db][Entry] -[2026-02-18 17:32:51,956][DEBUG][superset_tools_app] [get_db][Entry] -[2026-02-18 17:32:51,956][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_auth_db][Entry] -[2026-02-18 17:32:51,957][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_auth_db][Entry] -[2026-02-18 17:32:51,957][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:32:51,957][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] -[2026-02-18 17:32:51,957][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:32:51,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] -[2026-02-18 17:32:51,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:32:51,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] -[2026-02-18 17:32:51,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:32:51,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] -[2026-02-18 17:32:51,960][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:32:51,960][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:32:51,960][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] -[2026-02-18 17:32:51,960][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] -[2026-02-18 17:32:51,961][DEBUG][superset_tools_app] [create_mapping][Entry] -[2026-02-18 17:32:51,962][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Coherence:OK] -[2026-02-18 17:32:51,963][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Exit] -[2026-02-18 17:32:51,963][INFO][superset_tools_app] Response status: 200 for /api/mappings -[2026-02-18 17:32:51,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:32:51,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:32:51,964][DEBUG][superset_tools_app] [create_mapping][Entry] -[2026-02-18 17:32:51,966][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Coherence:OK] -[2026-02-18 17:32:51,966][DEBUG][superset_tools_app] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Action] [create_mapping][Exit] -[2026-02-18 17:32:51,967][INFO][superset_tools_app] Response status: 200 for /api/mappings -[2026-02-18 17:32:51,967][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 17:32:51,967][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] -[2026-02-18 17:32:51,968][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 17:32:51,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] -[2026-02-18 17:32:51,968][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] -[2026-02-18 17:32:51,968][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] -[2026-02-18 17:39:33,256][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 17:39:33,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:39:33,256][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:39:33,256][DEBUG][superset_tools_app] [init_db][Entry] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [__init__][Entry] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] -[2026-02-18 17:39:33,260][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,261][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,262][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,262][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,263][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,263][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,264][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,264][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,452][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. -[2026-02-18 17:39:33,452][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,453][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] -[2026-02-18 17:39:33,453][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] -[2026-02-18 17:39:33,454][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,454][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,689][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] -[2026-02-18 17:39:33,690][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] -[2026-02-18 17:39:33,690][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] -[2026-02-18 17:39:33,690][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] -[2026-02-18 17:39:33,690][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded -[2026-02-18 17:39:33,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:39:33,691][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] -[2026-02-18 17:39:33,691][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] -[2026-02-18 17:39:33,692][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] -[2026-02-18 17:39:33,692][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] -[2026-02-18 17:39:33,701][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] -[2026-02-18 17:39:33,702][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] -[2026-02-18 17:39:33,702][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] -[2026-02-18 17:39:33,702][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] -[2026-02-18 17:39:33,702][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] -[2026-02-18 17:39:33,703][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] -[2026-02-18 17:39:33,703][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] -[2026-02-18 17:39:33,703][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] -[2026-02-18 17:39:33,703][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] -[2026-02-18 17:39:33,703][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] -[2026-02-18 17:39:33,718][INFO][superset_tools_app] TaskManager initialized -[2026-02-18 17:39:33,718][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] -[2026-02-18 17:39:33,719][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] -[2026-02-18 17:39:33,719][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-18 17:39:33,719][INFO][superset_tools_app] SchedulerService initialized +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:39:33,720][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-18 17:39:33,720][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-18 17:39:33,720][INFO][superset_tools_app] ResourceService initialized +[2026-02-18 17:39:33,765][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-18 17:39:33,765][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:39:33,765][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-18 17:39:33,942][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:39:33,942][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-18 17:39:33,943][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-18 17:39:33,943][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-18 17:39:37,997][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-18 17:39:37,998][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:37,999][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-18 17:39:37,999][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-18 17:39:37,999][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:38,000][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:38,000][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:38,190][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-18 17:39:38,192][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-18 17:39:38,193][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-18 17:39:38,193][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-18 17:39:38,193][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-18 17:39:38,193][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-18 17:39:38,194][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:39:38.194014][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-18 17:39:38,194][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-18 17:39:38,194][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-18 17:39:38,194][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-18 17:39:38,195][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-18 17:39:38,197][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-18 17:39:38,197][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-18 17:39:38,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:38,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:38,204][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:39:38,205][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:38,205][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:38,205][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:38,205][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:39:38,206][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:39:38,208][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:39:38,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:38,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:38,233][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-18 17:39:38,234][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:38,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:38,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:38,235][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:38,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-18 17:39:38,236][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-18 17:39:38,237][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-18 17:39:38,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:38,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:38,536][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:39:38,537][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:38,538][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:38,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:38,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:38,538][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:38,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:38,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:38,540][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:38,541][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:39:38,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:38,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:38,541][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:38,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:38,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:38,541][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:39:38,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:38,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:38,552][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:39:38,554][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:38,554][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:38,554][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:38,555][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:38,555][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:38,555][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:38,556][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:38,557][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:38,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:38,558][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:38,558][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:38,564][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:39:38,564][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:38,564][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:39:38,564][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:38,564][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:38,565][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:38,565][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:39:38,565][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:38,565][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:40,126][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:40,126][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:40,126][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:40,126][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:40,126][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:41,361][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:39:41,361][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:41,361][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:41,361][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:39:41,361][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,362][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,362][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,362][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,362][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:39:41,362][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,363][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,363][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,363][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,367][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:39:41,367][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:39:41,374][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,375][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:39:41,375][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,376][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,376][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:41,376][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:39:41,376][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:39:41,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:39:41,378][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:39:41,379][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:39:41,379][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:39:41,379][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:39:41,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:41,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:42,123][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:39:42,124][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:42,124][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:42,124][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:42,125][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:42,125][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:42,125][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:42,126][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:42,126][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:39:42,126][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:39:42,126][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:39:42,127][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:39:42,128][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:42,128][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:42,144][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:39:42,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:42,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:42,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:42,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:42,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:42,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:42,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:42,147][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:42,147][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:39:42,147][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:42,147][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:42,147][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:42,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:42,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:42,148][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:39:42,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:42,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:42,159][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-18 17:39:42,160][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:42,161][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:42,161][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:42,161][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:42,161][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:42,162][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:42,162][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:42,163][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:42,163][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:42,163][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:42,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:42,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:42,164][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-18 17:39:42,164][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:42,164][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:42,169][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:42,169][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:42,169][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:43,556][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:43,556][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:43,556][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:43,556][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:43,556][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:44,349][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-18 17:39:44,349][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-18 17:39:44,350][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-18 17:39:44,350][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-18 17:39:44,350][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-18 17:39:44,351][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-18 17:39:44,351][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 17:39:44,351][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 17:39:44,351][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-18 17:39:44,352][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:39:44,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:44,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:44,353][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:44,354][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:44,354][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:44,354][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:44,354][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:44,355][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:44,355][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:44,355][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:39:44,355][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:39:44,355][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:39:44,356][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:39:44,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:44,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:44,374][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:39:44,374][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:44,375][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:44,376][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:44,376][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:39:44,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:44,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:44,377][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:39:44,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:44,377][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:44,377][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:39:44,378][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:44,378][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:44,385][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:39:44,387][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:44,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:44,387][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:44,387][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:44,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:44,388][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:44,388][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:44,389][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:39:44,389][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:39:44,389][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:44,389][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:44,389][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:44,390][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:39:44,390][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:44,390][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:44,396][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:39:44,396][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:44,396][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:39:44,396][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:44,396][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:44,397][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:44,397][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:44,397][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:44,397][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:44,397][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:39:44,397][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:44,397][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:46,362][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:46,362][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:46,362][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:46,362][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:46,363][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:47,482][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:39:47,482][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:47,482][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:47,482][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:39:47,482][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,483][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:39:47,483][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:39:47,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:39:47,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,492][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,492][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:39:47,492][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:39:47,492][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:39:47,492][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:39:47,493][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:39:47,494][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:39:47,494][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:39:47,495][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:39:47,495][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:47,496][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:51,580][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 17:39:51,581][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 17:39:51,581][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 17:39:51,582][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 17:39:51,582][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 17:39:51,582][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 17:39:51,583][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:51,583][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:51,583][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:39:51,583][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:39:51,584][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:51,586][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:39:51,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:51,586][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:51,586][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:39:51,586][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:51,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:51,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:39:51,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:51,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:39:51,590][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 17:39:51,590][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 17:39:51,590][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 17:39:51,590][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:39:51,590][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:39:51,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:39:51,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:51,591][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:51,595][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:39:51,595][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:51,595][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:39:51,595][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:39:51,595][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:51,595][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:51,599][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:51,599][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:51,599][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:39:51,599][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:39:51,599][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:39:51,600][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:51,600][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:51,600][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:39:51,600][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:51,600][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:53,062][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:53,063][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:53,063][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:53,063][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:53,063][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:53,674][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:39:53,674][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:39:53,675][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:53,675][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:53,675][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:39:53,675][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:53,675][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:55,408][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:55,409][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:55,409][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:55,409][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:55,409][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:56,294][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:39:56,294][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:56,294][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:56,294][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:39:56,294][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:39:56,295][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:39:56,295][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:39:56,295][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:39:56,295][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 17:39:56,295][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 17:39:56,296][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:39:56,297][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:56,297][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:39:56,298][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:56,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:56,298][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:56,298][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:39:56,298][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:56,298][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:56,303][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 17:39:56,303][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:56,303][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:56,303][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:39:56,304][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:56,304][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:56,304][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:39:56,304][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:56,304][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:39:57,947][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:39:57,947][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:39:57,947][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:39:57,947][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:39:57,947][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:39:58,977][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:39:58,977][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:39:58,977][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:39:58,977][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:39:58,977][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:39:58,977][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:39:58,978][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:39:58,978][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:39:58,979][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 17:39:58,979][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 17:39:58,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:58,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:39:58,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:39:58,982][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:58,982][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:39:58,982][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:39:58,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:39:58,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:39:58,983][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:39:58,983][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:39:58,983][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:39:58,987][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:39:58,988][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:39:58,988][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:39:58,988][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:39:58,988][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:39:58,988][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:39:58,988][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:40:00,939][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:40:00,939][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:40:00,939][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:40:00,940][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:40:00,940][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:40:02,266][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:40:02,266][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:40:02,266][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:40:02,266][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:40:02,266][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:40:02,266][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:40:02,267][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:40:02,267][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:40:02,268][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 17:40:02,268][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 17:40:02,268][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 17:40:06,878][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-18 17:40:06,879][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:40:06,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:40:06,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:40:06,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:40:06,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:40:06,880][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:40:06,880][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 17:40:06,881][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 17:40:06,882][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 17:40:06,882][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 17:40:06,882][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:40:06,882][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:40:06,882][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:40:06,887][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 32bc5c17-c484-4671-9918-2232d784ea99 created and scheduled for execution +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 17:40:06,887][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None for 1 dashboards +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,887][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:40:06,888][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 32bc5c17-c484-4671-9918-2232d784ea99 for plugin 'Superset Dashboard Migration' +[2026-02-18 17:40:06,888][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,890][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:40:06,891][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:40:06,891][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:40:06,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:40:06,892][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:40:06,892][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:40:06,892][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:40:06,895][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:40:06,895][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:40:06,895][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:40:06,895][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:40:06,895][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:40:06,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:40:06,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:40:06,895][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:40:06,895][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:40:06,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:40:06,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:40:06,896][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:40:06,896][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:40:06,896][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:40:06,899][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:40:06,899][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:40:06,899][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-18 17:40:06,900][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:40:06,900][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:40:06,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:40:06,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:40:06,900][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:40:07,705][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:07,708][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:40:07,708][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:40:09,258][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:40:09,258][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:40:09,258][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:40:09,258][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:40:09,258][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:40:10,612][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:10,612][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:10,614][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 32bc5c17-c484-4671-9918-2232d784ea99 completed successfully +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:40:10,614][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:10,616][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:40:10,616][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:40:10,616][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=32bc5c17-c484-4671-9918-2232d784ea99 +[2026-02-18 17:40:10,618][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:40:10,618][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:40:10,618][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 32bc5c17-c484-4671-9918-2232d784ea99 execution finished with status: TaskStatus.SUCCESS +[2026-02-18 17:40:10,618][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 17:40:10,618][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 17:40:10,618][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-18 17:40:10,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:40:10,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:40:10,629][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None +[2026-02-18 17:40:10,629][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 17:40:10,629][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 17:40:10,630][INFO][superset_tools_app] WebSocket connection accepted for task id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None (source=None, level=None) +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 17:40:10,630][INFO][superset_tools_app] Starting log stream for task id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=id='32bc5c17-c484-4671-9918-2232d784ea99' plugin_id='superset-migration' status= started_at=None finished_at=None user_id=None logs=[] params={'source_env_id': 'ss1', 'target_env_id': 'ss2', 'dashboards': [13], 'replace_db_config': False, 'db_mappings': {'a2dc77af-e654-49bb-b321-40f6b559a1ee': 'a2dc77af-e654-49bb-b321-40f6b559a1ee', '119cf2c2-5f18-43ae-9123-7b86dd6b4518': '119cf2c2-5f18-43ae-9123-7b86dd6b4518', '17ce0ec0-ce9f-4587-8994-dad09ce0873b': '17ce0ec0-ce9f-4587-8994-dad09ce0873b'}} input_required=False input_request=None result=None +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 17:40:10,630][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 17:48:02,686][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-18 17:48:02,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:02,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:02,686][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-18 17:48:02,696][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,697][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,698][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,699][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,699][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,700][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:02,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:02,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:02,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,888][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:48:02,889][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-18 17:48:02,890][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-18 17:48:02,890][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-18 17:48:02,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:02,891][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:02,891][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:03,140][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:03,141][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:03,141][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-18 17:48:03,141][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-18 17:48:03,142][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-18 17:48:03,142][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-18 17:48:03,142][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:03,142][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-18 17:48:03,142][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-18 17:48:03,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:48:03,143][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:48:03,151][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:48:03,152][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:03,152][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:48:03,152][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-18 17:48:03,152][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-18 17:48:03,165][INFO][superset_tools_app] TaskManager initialized +[2026-02-18 17:48:03,165][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-18 17:48:03,166][INFO][superset_tools_app] SchedulerService initialized +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:48:03,166][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-18 17:48:03,166][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-18 17:48:03,166][INFO][superset_tools_app] ResourceService initialized +[2026-02-18 17:48:03,197][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-18 17:48:03,197][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:48:03,197][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:48:03,310][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-18 17:48:03,310][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-18 17:48:03,310][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-18 17:48:03,310][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-18 17:48:03,311][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-18 17:48:03,311][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-18 17:48:03,311][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-18 17:48:03,312][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-18 17:48:03,312][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-18 17:48:03,312][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-18 17:48:07,455][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-18 17:48:07,456][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:07,457][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-18 17:48:07,457][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-18 17:48:07,457][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:07,459][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:07,459][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:07,641][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-18 17:48:07,644][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-18 17:48:07,644][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-18 17:48:07,644][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-18 17:48:07,644][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-18 17:48:07,645][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-18 17:48:07,645][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:48:07.645450][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-18 17:48:07,645][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-18 17:48:07,645][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-18 17:48:07,645][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-18 17:48:07,647][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-18 17:48:07,649][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-18 17:48:07,650][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:07,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:07,657][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:48:07,658][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:07,658][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:07,658][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:07,659][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:07,659][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:07,659][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:07,659][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:07,659][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:48:07,660][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:48:07,660][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:48:07,663][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:48:07,665][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:07,665][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:07,687][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-18 17:48:07,688][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:07,688][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:07,688][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:07,688][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:07,688][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:07,689][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:07,689][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-18 17:48:07,690][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:07,690][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:08,010][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:48:08,011][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:08,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:08,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:08,012][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:08,012][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:08,013][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:08,014][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:08,015][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:48:08,016][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:48:08,016][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:08,016][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:08,016][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:48:08,016][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:08,016][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:08,016][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:48:08,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:08,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:08,028][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:48:08,030][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:08,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:08,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:08,031][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:08,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:08,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:08,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:48:08,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:48:08,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:08,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:48:08,034][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:08,034][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:08,039][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:08,040][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:08,040][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:10,367][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:10,367][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:10,368][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:10,368][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:10,368][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:13,779][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,779][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,780][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,780][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,780][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,780][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,780][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,781][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,785][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:48:13,785][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:48:13,789][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,789][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,789][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,790][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,790][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:13,791][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:48:13,791][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:48:13,791][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:48:13,791][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:48:13,792][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:48:13,792][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:48:13,792][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:48:13,792][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:13,793][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:17,224][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 17:48:17,224][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 17:48:17,225][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 17:48:17,226][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 17:48:17,227][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 17:48:17,227][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 17:48:17,227][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:17,227][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:17,227][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:17,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:17,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:17,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:17,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:17,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:17,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:17,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:17,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:17,234][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:17,234][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:48:17,235][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:17,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:48:17,236][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:17,236][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:17,242][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:17,242][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:17,242][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:48:17,242][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:48:17,242][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:48:17,242][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:17,243][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:17,243][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:48:17,243][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:17,243][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:19,969][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:19,970][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:19,970][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:19,970][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:19,970][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:21,239][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:48:21,239][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:48:21,241][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 17:48:21,243][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:21,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:21,244][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:48:21,245][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:48:21,245][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:21,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:21,246][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:48:21,246][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:21,246][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:21,250][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:48:21,251][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:21,251][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:48:21,251][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:48:21,251][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:21,251][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:21,258][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:21,258][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:21,258][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:48:21,258][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:48:21,258][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:48:21,259][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:21,259][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:21,259][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:48:21,259][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:21,259][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:23,819][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:23,819][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:23,819][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:23,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:23,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:25,247][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:48:25,247][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:48:25,248][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:25,248][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:25,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:48:25,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:25,248][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:27,591][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:27,591][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:27,591][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:27,591][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:27,591][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:28,494][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:48:28,494][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 17:48:28,495][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 17:48:28,496][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:48:28,497][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:48:28,498][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:48:28,498][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:28,498][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:28,503][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 17:48:28,503][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:28,503][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:48:28,503][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:28,503][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:28,504][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:28,504][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:48:28,504][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:28,504][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:31,475][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:31,475][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:31,475][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:31,475][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:31,475][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:33,351][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:48:33,351][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:48:33,352][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 17:48:33,352][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 17:48:33,353][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:33,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:33,353][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 17:48:33,353][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:55,501][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:48:55,502][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:55,502][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:55,502][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:55,502][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:55,502][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:55,503][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:55,503][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:48:55,503][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:48:55,503][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:48:55,505][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:48:55,506][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:55,506][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:55,530][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:48:55,531][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:55,531][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:55,531][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:55,531][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:55,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:55,532][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:55,532][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:48:55,534][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:55,534][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:55,534][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:48:55,535][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:55,536][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:48:55,543][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:48:55,545][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:48:55,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:48:55,546][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:48:55,546][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:48:55,546][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:48:55,547][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:48:55,547][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:48:55,550][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:48:55,550][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:48:55,550][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:48:55,550][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:48:55,550][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:48:55,551][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:48:55,551][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:48:55,551][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:48:55,559][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:48:55,560][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:48:55,560][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:48:57,307][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:48:57,308][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:48:57,308][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:48:57,308][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:48:57,308][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:48:58,711][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:48:58,711][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:48:58,711][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:48:58,711][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:48:58,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,712][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,712][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,712][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,712][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,712][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,713][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:48:58,713][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:48:58,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:48:58,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:48:58,719][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:48:58,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:48:58,720][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:48:58,720][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:48:58,720][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:48:58,720][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:48:58,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:48:58,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:49:01,873][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 17:49:01,874][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 17:49:01,874][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 17:49:01,875][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 17:49:01,875][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 17:49:01,875][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 17:49:01,875][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:49:01,875][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:49:01,876][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:49:01,876][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:49:01,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:49:01,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:49:01,877][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:49:01,877][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:49:01,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:49:01,878][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:49:01,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:49:01,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:49:01,887][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:49:01,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:49:01,888][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:01,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:01,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:01,889][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:49:01,889][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:01,889][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:01,892][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:49:01,893][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:01,893][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:49:01,893][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:49:01,893][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:01,893][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:01,897][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:01,897][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:49:01,897][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:49:01,897][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:49:01,898][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:49:01,898][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:49:01,898][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:49:03,642][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:49:03,643][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:49:03,643][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:49:03,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:49:03,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:49:04,432][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:49:04,432][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:49:04,433][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:49:04,433][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:49:04,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:49:04,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:49:04,433][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:49:06,200][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:49:06,201][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:49:06,201][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:49:06,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:49:06,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:49:06,979][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 17:49:06,979][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 17:49:06,980][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:49:06,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:49:06,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:06,981][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:06,985][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 17:49:06,985][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:06,985][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:49:06,985][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:49:06,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:49:06,986][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:49:06,986][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:49:06,986][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:49:06,986][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:49:08,961][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:49:08,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:49:08,961][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:49:08,962][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:49:08,962][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:49:09,828][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:49:09,828][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:49:09,829][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 17:49:09,830][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 17:49:09,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:49:09,831][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 17:49:09,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:49:09,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:49:09,832][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:49:09,832][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:49:09,833][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:09,833][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:09,839][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:09,839][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:49:09,839][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:49:09,839][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:49:09,840][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:49:09,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:49:09,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:49:09,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:49:12,131][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:49:12,131][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:49:12,131][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:49:12,131][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:49:12,132][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:49:13,260][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:49:13,260][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:49:13,261][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 17:49:13,262][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 17:49:13,262][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 17:49:39,296][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-18 17:49:39,297][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:49:39,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:49:39,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:49:39,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:49:39,298][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:49:39,299][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:49:39,299][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:49:39,300][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:49:39,301][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,307][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:49:39,307][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:49:39,307][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 7dfbdc00-310a-4746-944f-e877ec107ae1 created and scheduled for execution +[2026-02-18 17:49:39,307][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 17:49:39,307][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 17:49:39,308][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: 7dfbdc00-310a-4746-944f-e877ec107ae1 for 1 dashboards +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:49:39,308][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 7dfbdc00-310a-4746-944f-e877ec107ae1 for plugin 'Superset Dashboard Migration' +[2026-02-18 17:49:39,308][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:39,310][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:49:39,311][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:49:39,311][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:39,311][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:39,316][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:49:39,316][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:39,316][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:49:39,316][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:49:39,316][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:49:39,316][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:49:39,317][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:49:39,317][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:49:39,322][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:49:39,322][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:49:41,158][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:41,161][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:49:41,161][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:49:41,557][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:49:41,558][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:49:41,558][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:49:41,558][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:49:41,558][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:49:43,566][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:49:43,566][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:49:43,567][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:43,567][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:43,568][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 7dfbdc00-310a-4746-944f-e877ec107ae1 completed successfully +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:49:43,569][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,571][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:49:43,572][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:49:43,572][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,573][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:49:43,573][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:49:43,573][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 7dfbdc00-310a-4746-944f-e877ec107ae1 execution finished with status: TaskStatus.SUCCESS +[2026-02-18 17:49:43,573][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 17:49:43,573][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 17:49:43,574][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-18 17:49:43,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:49:43,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:49:43,582][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,582][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 17:49:43,583][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 17:49:43,583][INFO][superset_tools_app] WebSocket connection accepted for task 7dfbdc00-310a-4746-944f-e877ec107ae1 (source=None, level=None) +[2026-02-18 17:49:43,584][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,584][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 17:49:43,585][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 17:49:43,585][INFO][superset_tools_app] Starting log stream for task 7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,585][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,585][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,586][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 17:49:43,586][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 17:49:43,587][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 17:49:43,587][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 17:49:43,588][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=7dfbdc00-310a-4746-944f-e877ec107ae1 +[2026-02-18 17:49:43,589][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 17:49:43,589][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 17:54:29,609][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-18 17:54:29,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:54:29,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:54:29,609][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-18 17:54:29,612][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-18 17:54:29,613][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-18 17:54:29,613][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:54:29,613][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-18 17:54:29,613][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-18 17:54:29,613][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-18 17:54:29,614][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,614][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,614][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:54:29,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:54:29,617][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,618][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,618][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:29,619][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,619][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:29,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,804][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:29,805][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-18 17:54:29,805][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-18 17:54:29,806][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:29,806][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:30,030][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-18 17:54:30,030][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-18 17:54:30,031][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-18 17:54:30,031][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-18 17:54:30,031][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-18 17:54:30,031][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-18 17:54:30,032][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:54:30,032][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-18 17:54:30,032][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-18 17:54:30,032][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-18 17:54:30,044][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-18 17:54:30,044][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-18 17:54:30,044][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-18 17:54:30,044][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:54:30,045][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:54:30,045][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:54:30,045][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-18 17:54:30,045][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-18 17:54:30,046][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-18 17:54:30,046][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-18 17:54:30,056][INFO][superset_tools_app] TaskManager initialized +[2026-02-18 17:54:30,056][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-18 17:54:30,057][INFO][superset_tools_app] SchedulerService initialized +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:54:30,057][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:54:30,058][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-18 17:54:30,058][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-18 17:54:30,058][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-18 17:54:30,058][INFO][superset_tools_app] ResourceService initialized +[2026-02-18 17:54:30,089][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-18 17:54:30,089][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-18 17:54:30,089][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-18 17:54:30,200][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-18 17:54:30,200][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-18 17:54:30,200][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-18 17:54:30,200][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-18 17:54:30,201][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-18 17:54:30,201][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-18 17:54:30,201][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-18 17:54:53,880][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-18 17:54:53,882][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:54:53,882][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-18 17:54:53,882][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-18 17:54:53,882][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:54:53,884][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:54:53,884][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:54:54,073][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-18 17:54:54,075][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-18 17:54:54,075][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-18 17:54:54,075][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-18 17:54:54,075][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-18 17:54:54,076][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-18 17:54:54,076][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-18T14:54:54.076822][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-18 17:54:54,076][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-18 17:54:54,076][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-18 17:54:54,076][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-18 17:54:54,078][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-18 17:54:54,080][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-18 17:54:54,080][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-18 17:54:54,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:54:54,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:54:54,088][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:54:54,088][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:54:54,089][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:54:54,089][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:54:54,089][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:54:54,089][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:54:54,090][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:54:54,090][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:54:54,090][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:54:54,090][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:54:54,090][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:54:54,093][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:54:54,094][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:54:54,094][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:54:54,133][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-18 17:54:54,134][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:54:54,134][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:54:54,134][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:54:54,134][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:54:54,134][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-18 17:54:54,135][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-18 17:54:54,136][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-18 17:54:54,136][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:54:54,136][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:54:54,609][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:54:54,610][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:54:54,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:54:54,611][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:54:54,611][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:54:54,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:54:54,613][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:54:54,614][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:54:54,616][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:54:54,616][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:54:54,617][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:54:54,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:54:54,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:54:54,629][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:54:54,631][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:54:54,631][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:54:54,632][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:54:54,632][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:54:54,632][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:54:54,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:54:54,633][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:54:54,634][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:54:54,634][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:54:54,634][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:54:54,635][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:54:54,635][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:54:54,643][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:54:54,643][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:54:54,643][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:54:54,643][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:54:54,643][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:54:54,643][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:54:54,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:54:54,644][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:54:55,980][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:54:55,980][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:54:55,980][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:54:55,980][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:54:55,980][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:54:57,255][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,256][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:54:57,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:54:57,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,256][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,256][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:54:57,261][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:54:57,266][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,266][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,266][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,266][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,266][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:54:57,266][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,267][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,267][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,267][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:54:57,267][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,268][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,268][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,268][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:54:57,268][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:54:57,268][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:54:57,268][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:54:57,269][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:54:57,269][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:54:57,269][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:54:57,269][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:54:57,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:54:57,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:55:43,053][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-18 17:55:43,054][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:55:43,054][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:55:43,054][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:55:43,054][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:55:43,054][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:55:43,055][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:55:43,055][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-18 17:55:43,056][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-18 17:55:43,056][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-18 17:55:43,057][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:55:43,057][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:55:49,903][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 17:55:49,904][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 17:55:49,904][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 17:55:49,905][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 17:55:49,906][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 17:55:49,906][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 17:55:49,907][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:55:49,907][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:55:49,907][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:55:49,908][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:55:49,909][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:55:49,911][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:55:49,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:55:49,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:55:49,913][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:55:49,914][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:55:49,914][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:49,914][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:49,919][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:55:49,919][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:49,919][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:55:49,919][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 17:55:49,919][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:49,919][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:55:49,924][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:55:49,924][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:55:51,212][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:55:51,212][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:55:51,212][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:55:51,212][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:51,212][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:55:51,703][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:55:51,703][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:55:51,704][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:55:51,704][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:55:51,704][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:55:51,704][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:55:51,704][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:55:53,290][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:55:53,290][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:55:53,290][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:55:53,290][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:53,290][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:55:54,182][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:55:54,183][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 17:55:54,183][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 17:55:54,184][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 17:55:54,185][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 17:55:54,185][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 17:55:54,185][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 17:55:54,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:55:54,186][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:55:54,187][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 17:55:54,187][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:55:54,187][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:55:54,188][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:55:54,188][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:54,188][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:54,195][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 17:55:54,195][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:54,195][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:55:54,195][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:55:54,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:55:54,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:55:54,196][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:55:54,196][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:55:55,580][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:55:55,580][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:55:55,580][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:55:55,580][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:55,580][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:55:56,188][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:55:56,189][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:55:56,189][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 17:55:56,190][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:55:56,190][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 17:55:56,191][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:56,191][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:55:56,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:55:56,195][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:55:57,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:55:57,540][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:55:57,540][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:55:57,540][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:57,540][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:55:57,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 17:55:57,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:55:57,999][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:55:57,999][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 17:55:58,000][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 17:55:58,000][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 17:55:58,000][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 17:55:58,000][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 17:55:58,001][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 17:55:58,001][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 17:55:58,002][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-18 17:55:58,003][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:55:58,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:55:58,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:55:58,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:55:58,005][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:55:58,005][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:55:58,006][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:55:58,006][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:55:58,006][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:55:58,006][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:55:58,007][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:55:58,008][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:55:58,011][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 49145c06-6fd1-4d40-a289-bc9e05a86d38 created and scheduled for execution +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 17:55:58,011][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: 49145c06-6fd1-4d40-a289-bc9e05a86d38 for 1 dashboards +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,011][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:55:58,012][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 49145c06-6fd1-4d40-a289-bc9e05a86d38 for plugin 'Superset Dashboard Migration' +[2026-02-18 17:55:58,012][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-18 17:55:58,014][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:55:58,015][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:58,015][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:55:58,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:58,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:58,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:58,016][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:55:58,016][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:58,016][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:58,024][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:55:58,024][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:58,024][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:55:58,024][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 17:55:58,024][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:55:58,024][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 17:55:58,025][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:55:58,025][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:55:58,029][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:55:58,029][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:55:58,050][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:55:58,054][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:55:58,054][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:55:59,194][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:55:59,195][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:55:59,195][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:55:59,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:59,195][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:55:59,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:55:59,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:55:59,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:55:59,881][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:55:59,881][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:55:59,882][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [export_dashboard][Entry] +[2026-02-18 17:55:59,887][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:55:59,887][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 17:56:01,122][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 17:56:01,123][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260218T145600.zip. +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [Create temporary resource][Entry] +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpwwbh2fb6.zip +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Entry] +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpiiewtsjs.zip +[2026-02-18 17:56:01,123][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [MigrationEngine.transform_zip][Entry] +[2026-02-18 17:56:01,123][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Extracting ZIP: /tmp/tmpwwbh2fb6.zip +[2026-02-18 17:56:01,125][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][State] Found 1 dataset files. +[2026-02-18 17:56:01,125][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Transforming dataset: /tmp/tmpv0grbon8/dashboard_export_20260218T145600/datasets/examples/test_join_select_26.yaml +[2026-02-18 17:56:01,136][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Re-packaging ZIP to: /tmp/tmpiiewtsjs.zip (strip_databases=False) +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Coherence:OK] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Exit] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [import_dashboard][Entry] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_validate_import_file][Entry] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Coherence:OK] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Exit] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_do_import][Entry] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][State] Uploading file: /tmp/tmpiiewtsjs.zip +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [upload_file][Entry] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [headers][Entry] +[2026-02-18 17:56:01,137][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:56:01,137][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 17:56:01,137][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 17:56:01,137][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:56:02,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Coherence:OK] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Exit] +[2026-02-18 17:56:02,499][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_perform_upload][Entry] +[2026-02-18 17:56:08,568][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Coherence:OK] +[2026-02-18 17:56:08,568][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Exit] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Coherence:OK] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Exit] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Coherence:OK] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Exit] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:56:08,569][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:56:08,569][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin][Exit] Migration finished. +[2026-02-18 17:56:08,571][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 49145c06-6fd1-4d40-a289-bc9e05a86d38 completed successfully +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 17:56:08,572][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,574][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 17:56:08,574][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 17:56:08,575][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,576][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 17:56:08,577][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 17:56:08,577][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 49145c06-6fd1-4d40-a289-bc9e05a86d38 execution finished with status: TaskStatus.SUCCESS +[2026-02-18 17:56:08,577][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 17:56:08,577][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 17:56:08,577][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-18 17:56:08,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:56:08,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:56:08,587][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,587][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 17:56:08,587][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 17:56:08,587][INFO][superset_tools_app] WebSocket connection accepted for task 49145c06-6fd1-4d40-a289-bc9e05a86d38 (source=None, level=None) +[2026-02-18 17:56:08,588][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,588][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 17:56:08,588][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 17:56:08,588][INFO][superset_tools_app] Starting log stream for task 49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,588][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,588][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,591][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 17:56:08,591][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 17:56:08,591][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 17:56:08,591][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 17:56:08,593][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=49145c06-6fd1-4d40-a289-bc9e05a86d38 +[2026-02-18 17:56:08,594][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 17:56:08,594][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 17:56:17,377][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:56:17,378][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:56:17,378][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:56:17,379][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:56:17,379][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:56:17,379][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:56:17,379][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:56:17,380][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:56:17,381][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:56:17,381][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:56:17,381][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:56:17,382][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:56:17,382][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:56:17,394][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:56:17,395][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:56:17,395][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:56:17,396][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:56:17,396][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:56:17,396][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:56:17,397][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:56:17,397][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:56:17,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:56:17,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:56:17,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:56:17,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:56:17,399][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:56:17,399][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:56:17,399][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:56:17,406][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:56:17,407][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:56:17,407][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:56:17,407][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:56:17,407][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:56:17,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:56:17,408][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:56:17,408][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:56:17,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:56:17,408][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:56:17,408][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:56:17,408][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:56:17,408][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:56:18,897][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:56:18,897][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:56:18,897][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:56:18,898][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:56:18,898][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:56:20,619][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:56:20,619][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,620][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,620][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,620][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:56:20,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,629][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,629][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:56:20,629][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,630][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,630][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,630][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,630][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,630][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,631][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:56:20,631][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:56:20,631][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:56:20,631][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:56:20,633][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:56:20,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:56:20,634][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:56:20,634][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:56:20,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:56:20,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:57:06,267][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:57:06,267][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:57:06,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:57:06,268][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:57:06,268][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:57:06,268][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:57:06,270][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:57:06,270][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:57:06,272][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:06,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:06,272][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:57:06,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:57:06,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:57:06,278][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:57:06,280][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:57:06,280][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:57:06,280][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:57:06,281][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:57:06,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:57:06,281][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:57:06,282][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:57:06,284][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:57:06,284][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:57:06,284][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:57:06,285][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:57:06,285][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:57:06,285][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:57:06,285][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:57:06,285][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:57:06,291][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:57:06,291][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:57:06,291][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:57:06,291][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:57:06,291][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:57:06,292][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:57:06,292][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:57:06,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:57:06,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:57:06,292][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:57:07,956][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:57:07,957][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:57:07,957][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:57:07,957][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:57:07,957][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:57:08,887][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,887][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,887][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,888][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,888][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,888][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:57:08,888][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:57:08,893][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,893][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,894][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,894][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,895][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,895][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:08,895][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:57:08,895][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:57:08,895][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:57:08,896][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:57:08,896][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:57:08,896][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:57:08,897][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:57:08,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:57:08,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:57:15,758][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:57:15,760][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:57:15,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:57:15,761][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:57:15,761][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:57:15,761][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:57:15,762][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:57:15,762][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:57:15,763][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:15,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:15,763][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:57:15,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:57:15,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:57:15,770][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:57:15,772][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:57:15,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:57:15,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:57:15,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:57:15,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:57:15,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:57:15,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:57:15,775][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:57:15,776][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:57:15,776][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:57:15,776][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:57:15,781][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:57:15,782][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:57:15,782][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:57:17,273][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:57:17,273][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:57:17,274][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:57:17,274][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:57:17,274][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:57:18,039][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:57:18,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:57:18,045][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,045][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,045][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,045][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,045][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:57:18,045][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,046][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:57:18,046][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:57:18,047][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:57:18,047][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:57:18,047][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:57:18,048][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:57:18,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:57:18,048][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:57:18,049][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:57:18,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:57:18,051][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:58:11,729][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 17:58:11,730][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:58:11,730][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:58:11,730][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:58:11,730][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:58:11,730][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:58:11,732][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:58:11,732][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:58:11,733][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 17:58:11,733][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 17:58:11,733][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 17:58:11,735][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 17:58:11,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:58:11,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:58:11,749][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 17:58:11,749][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:58:11,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:58:11,750][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:58:11,750][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:58:11,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:58:11,750][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:58:11,751][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:58:11,753][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:58:11,753][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:58:11,753][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 17:58:11,754][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:58:11,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 17:58:11,762][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 17:58:11,763][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 17:58:11,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 17:58:11,764][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 17:58:11,764][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 17:58:11,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 17:58:11,765][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 17:58:11,765][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:58:11,766][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 17:58:11,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 17:58:11,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 17:58:11,767][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 17:58:11,772][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 17:58:11,772][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 17:58:11,772][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 17:58:11,772][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 17:58:11,772][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 17:58:11,773][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 17:58:11,773][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 17:58:11,773][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 17:58:11,773][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 17:58:11,773][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 17:58:11,773][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 17:58:13,280][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 17:58:13,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 17:58:13,280][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 17:58:13,281][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 17:58:13,281][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 17:58:14,210][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 17:58:14,210][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,211][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,211][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,211][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,211][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,211][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,212][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 17:58:14,212][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,217][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,217][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,217][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,218][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,218][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,218][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,218][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,218][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,219][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 17:58:14,219][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 17:58:14,219][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 17:58:14,219][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 17:58:14,220][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 17:58:14,221][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 17:58:14,221][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 17:58:14,221][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 17:58:14,222][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 17:58:14,222][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:11,290][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:01:11,291][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:11,291][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:11,292][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:11,292][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:11,292][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:11,293][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:11,293][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:11,294][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:01:11,294][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:01:11,294][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:01:11,295][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:01:11,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:11,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:11,319][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 18:01:11,320][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:11,320][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:11,320][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:11,320][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:11,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:11,322][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:11,322][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:11,323][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:01:11,323][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 18:01:11,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:11,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:11,324][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:01:11,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:11,324][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:11,324][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 18:01:11,326][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:11,326][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:11,335][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 18:01:11,337][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:11,337][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:11,337][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:11,337][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:11,337][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:11,338][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:11,338][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 18:01:11,339][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:01:11,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:01:11,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:11,340][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:11,348][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:01:11,348][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:11,348][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 18:01:11,349][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:11,349][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:11,350][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:11,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:01:11,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:11,350][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:12,695][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:12,696][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:12,696][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:12,696][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:12,696][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:13,661][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:13,662][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,662][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,662][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 18:01:13,662][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,663][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,663][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 18:01:13,663][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 18:01:13,668][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,668][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,669][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,669][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,669][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 18:01:13,669][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,670][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,670][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,670][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,670][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:01:13,670][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 18:01:13,670][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 18:01:13,670][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 18:01:13,671][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 18:01:13,672][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:01:13,672][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:01:13,673][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 18:01:13,673][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:13,673][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:17,827][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 18:01:17,828][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 18:01:17,828][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 18:01:17,831][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 18:01:17,831][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 18:01:17,832][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 18:01:17,832][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:17,832][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:17,833][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:17,834][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:17,835][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:17,835][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:17,835][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:17,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:17,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:17,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:17,836][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:01:17,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:01:17,837][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:17,837][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:17,841][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 18:01:17,841][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:17,841][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:01:17,842][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:17,842][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:17,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:01:17,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:17,842][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:19,836][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:19,836][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:19,836][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:19,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:19,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:21,084][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:01:21,084][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:21,085][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:21,085][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:01:21,085][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:01:21,085][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:01:21,085][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:01:21,085][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:01:21,086][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 18:01:21,088][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:21,088][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 18:01:21,088][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:21,088][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:01:21,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:01:21,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:21,089][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:21,093][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:01:21,093][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:21,093][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:01:21,093][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:21,093][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:01:21,094][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:21,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:21,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:21,094][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 18:01:21,094][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:21,094][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:21,098][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:21,098][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:21,098][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 18:01:21,098][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 18:01:21,098][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:01:21,098][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:01:21,098][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:21,099][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:21,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:01:21,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:21,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:22,870][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:22,871][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:22,871][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:22,871][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:22,871][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:23,732][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:01:23,732][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:01:23,732][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:23,733][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:23,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:01:23,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:23,733][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:26,107][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:26,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:26,107][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:26,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:26,107][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:27,492][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 18:01:27,492][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 18:01:27,493][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:01:27,494][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:01:27,494][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:27,494][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:27,498][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:27,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:29,489][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:29,489][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:29,489][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:29,489][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:29,490][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:30,458][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:01:30,458][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:01:30,459][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 18:01:30,459][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 18:01:30,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:30,460][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:30,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:30,460][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 18:01:32,320][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-18 18:01:32,321][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:01:32,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:01:32,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:01:32,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:01:32,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:01:32,322][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:01:32,322][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:01:32,323][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,326][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:01:32,326][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:01:32,326][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 07e74039-1859-427d-b72f-62b6631cd22c created and scheduled for execution +[2026-02-18 18:01:32,327][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 18:01:32,327][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 18:01:32,328][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: 07e74039-1859-427d-b72f-62b6631cd22c for 1 dashboards +[2026-02-18 18:01:32,328][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-18 18:01:32,328][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-18 18:01:32,328][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:01:32,329][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 07e74039-1859-427d-b72f-62b6631cd22c for plugin 'Superset Dashboard Migration' +[2026-02-18 18:01:32,329][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:32,332][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:01:32,333][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:01:32,333][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:32,333][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:32,337][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:01:32,337][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:32,337][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:01:32,337][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:01:32,337][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:01:32,337][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:01:32,341][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:01:32,341][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:01:32,341][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-18 18:01:32,341][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:01:32,341][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:01:32,341][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:01:32,342][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:32,342][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:01:32,342][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:32,342][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:33,939][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:33,939][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:33,939][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:33,939][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:33,939][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:34,071][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:34,074][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:01:34,074][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:01:34,884][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:01:34,884][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:01:34,884][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:01:34,884][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:01:34,884][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:01:34,884][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [export_dashboard][Entry] +[2026-02-18 18:01:34,885][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:34,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:01:36,096][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:01:36,097][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260218T150135.zip. +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [Create temporary resource][Entry] +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpvhvb9mlx.zip +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Entry] +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpafdx030m.zip +[2026-02-18 18:01:36,097][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [MigrationEngine.transform_zip][Entry] +[2026-02-18 18:01:36,097][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Extracting ZIP: /tmp/tmpvhvb9mlx.zip +[2026-02-18 18:01:36,098][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][State] Found 1 dataset files. +[2026-02-18 18:01:36,098][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Transforming dataset: /tmp/tmpq6insyj3/dashboard_export_20260218T150135/datasets/examples/test_join_select_26.yaml +[2026-02-18 18:01:36,112][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Re-packaging ZIP to: /tmp/tmpafdx030m.zip (strip_databases=False) +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Coherence:OK] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Exit] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [import_dashboard][Entry] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_validate_import_file][Entry] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Coherence:OK] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Exit] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_do_import][Entry] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][State] Uploading file: /tmp/tmpafdx030m.zip +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [upload_file][Entry] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [headers][Entry] +[2026-02-18 18:01:36,113][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:01:36,113][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:01:36,113][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:01:36,113][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:01:37,785][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:01:37,785][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:01:37,785][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:01:37,785][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:01:37,785][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:01:37,786][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Coherence:OK] +[2026-02-18 18:01:37,786][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Exit] +[2026-02-18 18:01:37,786][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_perform_upload][Entry] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Coherence:OK] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Exit] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Coherence:OK] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Exit] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Coherence:OK] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Exit] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 18:01:39,175][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 18:01:39,176][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,176][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:39,176][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:39,176][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin][Exit] Migration finished. +[2026-02-18 18:01:39,177][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 07e74039-1859-427d-b72f-62b6631cd22c completed successfully +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:01:39,177][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,179][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:01:39,179][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:01:39,179][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,181][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:01:39,181][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:01:39,181][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 07e74039-1859-427d-b72f-62b6631cd22c execution finished with status: TaskStatus.SUCCESS +[2026-02-18 18:01:39,181][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 18:01:39,181][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 18:01:39,181][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-18 18:01:39,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:01:39,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 18:01:39,189][INFO][superset_tools_app] WebSocket connection accepted for task 07e74039-1859-427d-b72f-62b6631cd22c (source=None, level=None) +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 18:01:39,189][INFO][superset_tools_app] Starting log stream for task 07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,189][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,190][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 18:01:39,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 18:01:39,191][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 18:01:39,191][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 18:01:39,192][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:01:39,192][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:01:39,192][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:03:35,302][INFO][superset_tools_app] Incoming request: GET /api/tasks/07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 18:03:35,304][INFO][superset_tools_app] WebSocket connection accepted for task 07e74039-1859-427d-b72f-62b6631cd22c (source=None, level=None) +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 18:03:35,304][INFO][superset_tools_app] Starting log stream for task 07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,304][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,306][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 18:03:35,306][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 18:03:35,306][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 18:03:35,306][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 18:03:35,307][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,307][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:03:35,307][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:03:35,307][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:03:35,308][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:03:35,308][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:03:35,308][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:03:35,308][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:03:35,309][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:03:35,309][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:03:35,311][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:03:35,312][INFO][superset_tools_app] Response status: 200 for /api/tasks/07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,313][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:03:35,314][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:03:35,343][INFO][superset_tools_app] Incoming request: GET /api/tasks/07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,344][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:03:35,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:03:35,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:03:35,345][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:03:35,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:03:35,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:03:35,346][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:03:35,348][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:03:35,348][INFO][superset_tools_app] Response status: 200 for /api/tasks/07e74039-1859-427d-b72f-62b6631cd22c +[2026-02-18 18:03:35,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:03:35,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:06:50,079][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-18 18:06:50,081][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-18 18:06:50,081][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-18 18:06:50,081][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-18 18:06:50,081][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-18 18:06:50,081][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:06:50,082][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:06:50,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:06:50,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:06:50,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:06:50,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:06:50,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:06:50,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:06:50,085][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:06:50,085][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:06:50,087][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:06:50,087][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:06:50,088][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:06:50,088][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:06:50,093][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-18 18:06:50,093][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:06:50,093][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:06:50,093][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:06:50,094][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:06:50,094][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:06:50,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:06:50,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:06:50,094][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:06:51,790][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:06:51,791][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:06:51,791][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:06:51,791][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:06:51,791][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:06:52,714][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:06:52,715][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:06:52,715][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:06:52,716][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:06:52,716][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:06:52,716][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:06:52,720][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:06:52,720][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:06:52,720][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:06:52,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-18 18:06:52,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:06:52,720][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:06:52,724][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:06:52,724][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:06:54,452][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:06:54,452][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:06:54,453][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:06:54,453][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:06:54,453][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:06:55,408][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:06:55,408][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:06:55,408][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:06:55,409][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:06:55,409][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:06:55,409][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:06:55,409][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:06:55,409][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:06:55,409][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:06:55,409][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:06:57,529][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:06:57,530][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:06:57,530][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:06:57,530][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:06:57,530][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:06:58,552][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-18 18:06:58,552][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-18 18:06:58,554][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:06:58,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:58,554][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-18 18:06:58,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:06:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:06:58,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:06:58,555][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-18 18:06:58,555][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:06:58,555][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:06:58,558][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:06:58,558][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:07:00,369][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:07:00,369][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:07:00,369][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:07:00,369][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:07:00,369][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:07:01,073][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-18 18:07:01,073][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-18 18:07:01,074][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-18 18:07:01,075][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-18 18:07:01,075][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-18 18:07:01,076][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:01,076][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:07:01,076][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:01,076][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 18:07:01,077][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:01,077][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 18:07:01,948][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-18 18:07:01,949][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:07:01,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:07:01,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:07:01,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:07:01,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:07:01,950][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:07:01,950][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:07:01,951][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,955][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:07:01,956][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:07:01,956][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 63db91c9-296e-445c-a2ee-2d7f54282720 created and scheduled for execution +[2026-02-18 18:07:01,956][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 18:07:01,956][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 18:07:01,956][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: 63db91c9-296e-445c-a2ee-2d7f54282720 for 1 dashboards +[2026-02-18 18:07:01,956][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-18 18:07:01,956][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:07:01,957][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 63db91c9-296e-445c-a2ee-2d7f54282720 for plugin 'Superset Dashboard Migration' +[2026-02-18 18:07:01,957][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,959][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:07:01,959][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:07:01,960][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:07:01,960][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:07:01,960][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 18:07:01,961][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:07:01,961][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:07:01,964][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:07:01,965][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:07:01,965][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:07:01,965][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-18 18:07:01,965][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:07:01,965][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:07:01,970][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:07:01,970][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:07:02,095][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:02,097][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:07:02,097][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:07:04,052][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:07:04,052][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:07:04,052][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:07:04,052][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:07:04,052][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:07:05,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:07:05,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:07:05,001][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:07:05,001][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:07:05,001][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:07:05,001][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [export_dashboard][Entry] +[2026-02-18 18:07:05,002][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 2. +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:07:05,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:07:07,899][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:07:07,901][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:07:07,902][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 2 to dashboard_export_20260218T150705.zip. +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [Create temporary resource][Entry] +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpo9ufd09j.zip +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Entry] +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmpdwudb4hh.zip +[2026-02-18 18:07:07,902][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [MigrationEngine.transform_zip][Entry] +[2026-02-18 18:07:07,902][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Extracting ZIP: /tmp/tmpo9ufd09j.zip +[2026-02-18 18:07:07,903][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][State] Found 1 dataset files. +[2026-02-18 18:07:07,904][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Transforming dataset: /tmp/tmpjd0wnsf1/dashboard_export_20260218T150705/datasets/examples/birth_names_2.yaml +[2026-02-18 18:07:07,911][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Re-packaging ZIP to: /tmp/tmpdwudb4hh.zip (strip_databases=False) +[2026-02-18 18:07:07,913][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Coherence:OK] +[2026-02-18 18:07:07,913][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Exit] +[2026-02-18 18:07:07,913][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [import_dashboard][Entry] +[2026-02-18 18:07:07,913][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_validate_import_file][Entry] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Coherence:OK] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Exit] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_do_import][Entry] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][State] Uploading file: /tmp/tmpdwudb4hh.zip +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [upload_file][Entry] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [headers][Entry] +[2026-02-18 18:07:07,914][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:07:07,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-18 18:07:07,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-18 18:07:07,914][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:07:09,576][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Coherence:OK] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Exit] +[2026-02-18 18:07:09,576][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_perform_upload][Entry] +[2026-02-18 18:07:11,837][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Coherence:OK] +[2026-02-18 18:07:11,837][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Exit] +[2026-02-18 18:07:11,837][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Coherence:OK] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Exit] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Coherence:OK] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Exit] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:11,838][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:11,838][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin][Exit] Migration finished. +[2026-02-18 18:07:11,839][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 63db91c9-296e-445c-a2ee-2d7f54282720 completed successfully +[2026-02-18 18:07:11,839][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:07:11,839][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:07:11,840][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:07:11,840][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,840][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:07:11,840][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:07:11,840][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,841][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:07:11,841][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:07:11,841][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,843][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:07:11,843][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:07:11,843][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 63db91c9-296e-445c-a2ee-2d7f54282720 execution finished with status: TaskStatus.SUCCESS +[2026-02-18 18:07:11,843][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 18:07:11,843][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 18:07:11,843][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-18 18:07:11,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:11,844][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:07:11,849][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 18:07:11,850][INFO][superset_tools_app] WebSocket connection accepted for task 63db91c9-296e-445c-a2ee-2d7f54282720 (source=None, level=None) +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 18:07:11,850][INFO][superset_tools_app] Starting log stream for task 63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,850][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:07:11,851][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:07:11,852][INFO][superset_tools_app] Incoming request: GET /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,852][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:07:11,852][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:07:11,853][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:07:11,853][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:07:11,853][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:07:11,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:07:11,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:07:11,854][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:07:11,854][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,855][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:07:11,855][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:07:11,855][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:07:11,855][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:07:11,855][INFO][superset_tools_app] Response status: 200 for /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:11,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:07:11,876][INFO][superset_tools_app] Incoming request: GET /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,877][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:07:11,877][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:07:11,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:07:11,877][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:07:11,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:07:11,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:07:11,879][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:07:11,881][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:07:11,882][INFO][superset_tools_app] Response status: 200 for /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:11,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:11,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:07:18,056][INFO][superset_tools_app] Incoming request: GET /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:18,057][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:07:18,058][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:07:18,058][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:07:18,058][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:07:18,058][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:07:18,060][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:07:18,060][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:07:18,061][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:07:18,061][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:18,061][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:07:18,061][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:07:18,062][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:07:18,062][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:07:18,062][INFO][superset_tools_app] Response status: 200 for /api/tasks/63db91c9-296e-445c-a2ee-2d7f54282720 +[2026-02-18 18:07:18,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:07:18,064][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:08:40,884][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-18 18:08:40,885][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:08:40,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:08:40,885][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:08:40,885][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:08:40,885][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:08:40,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:08:40,886][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=1, schedule=None +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:08:40,887][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:40,889][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:08:40,890][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:08:40,890][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task f7033e08-cbd8-437e-8d06-7e3cc06726b4 created and scheduled for execution +[2026-02-18 18:08:40,890][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-18 18:08:40,890][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-18 18:08:40,890][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: f7033e08-cbd8-437e-8d06-7e3cc06726b4 for 1 dashboards +[2026-02-18 18:08:40,890][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] +[2026-02-18 18:08:40,890][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:08:40,891][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task f7033e08-cbd8-437e-8d06-7e3cc06726b4 for plugin 'Superset Dashboard Backup' +[2026-02-18 18:08:40,891][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-18 18:08:40,893][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-18 18:08:40,894][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-18 18:08:40,894][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:08:40,894][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:08:40,898][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:08:40,898][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:08:40,898][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] +[2026-02-18 18:08:40,899][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:08:40,899][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:08:40,899][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:08:40,899][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:08:40,899][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:08:42,102][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:42,104][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:42,104][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:42,583][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:08:42,584][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:08:42,584][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:08:42,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:42,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:08:43,526][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: TA-0001 Test dashboard][Entry] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Coherence:OK] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Exit] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:43,526][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:43,526][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:43,527][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:43,527][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:43,527][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:43,527][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:44,104][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:44,106][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:44,106][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:44,218][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260218T150843.zip. +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:44,218][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Entry] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Coherence:OK] +[2026-02-18 18:08:44,218][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Action] [Sanitize filename: dashboard_export_20260218T150843.zip][Exit] +[2026-02-18 18:08:44,219][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard/dashboard_export_20260218T150843.zip +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Entry] +[2026-02-18 18:08:44,219][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 2 files according to retention policy +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Coherence:OK] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Exit] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:44,219][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: USA Births Names][Entry] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Coherence:OK] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Exit] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:44,220][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 2. +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:44,220][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:45,751][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:45,787][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:45,787][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:45,787][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:45,787][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:45,788][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 2 to dashboard_export_20260218T150844.zip. +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:45,788][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Entry] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Coherence:OK] +[2026-02-18 18:08:45,788][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Action] [Sanitize filename: dashboard_export_20260218T150844.zip][Exit] +[2026-02-18 18:08:45,789][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names/dashboard_export_20260218T150844.zip +[2026-02-18 18:08:45,789][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:45,789][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:45,789][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Entry] +[2026-02-18 18:08:45,789][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:45,790][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190202.zip +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Coherence:OK] +[2026-02-18 18:08:45,790][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Exit] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Sales Dashboard][Entry] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Coherence:OK] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Exit] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:45,791][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:45,791][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:46,107][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:46,109][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:46,109][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:49,464][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:49,502][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260218T150846.zip. +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:49,502][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:49,502][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Entry] +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Coherence:OK] +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Action] [Sanitize filename: dashboard_export_20260218T150846.zip][Exit] +[2026-02-18 18:08:49,503][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard/dashboard_export_20260218T150846.zip +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Entry] +[2026-02-18 18:08:49,503][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard +[2026-02-18 18:08:49,503][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:49,504][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190203.zip +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Exit] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: COVID Vaccine Dashboard][Entry] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Exit] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:49,504][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 10. +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:49,504][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:50,110][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:50,112][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:50,112][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:53,575][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:53,577][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 10 to dashboard_export_20260218T150849.zip. +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:53,577][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:53,577][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Entry] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Coherence:OK] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Action] [Sanitize filename: dashboard_export_20260218T150849.zip][Exit] +[2026-02-18 18:08:53,578][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard/dashboard_export_20260218T150849.zip +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Entry] +[2026-02-18 18:08:53,578][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:53,578][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190201.zip +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Coherence:OK] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Exit] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:53,578][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: test1][Entry] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Coherence:OK] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Exit] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:53,579][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 12. +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:53,579][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:54,112][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:54,115][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:54,115][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:54,471][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:54,471][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:54,471][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:54,471][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:54,471][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:54,472][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 12 to dashboard_export_20260218T150853.zip. +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:54,472][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Entry] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Coherence:OK] +[2026-02-18 18:08:54,472][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Action] [Sanitize filename: dashboard_export_20260218T150853.zip][Exit] +[2026-02-18 18:08:54,473][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/test1/dashboard_export_20260218T150853.zip +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Entry] +[2026-02-18 18:08:54,473][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/test1 +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:54,473][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:54,474][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190201.zip +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Exit] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: World Bank's Data][Entry] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Exit] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:54,474][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 1. +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:54,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:56,115][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:56,117][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:56,117][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:57,313][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:57,390][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:57,390][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:57,391][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 1 to dashboard_export_20260218T150854.zip. +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:57,391][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Entry] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Coherence:OK] +[2026-02-18 18:08:57,391][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Action] [Sanitize filename: dashboard_export_20260218T150854.zip][Exit] +[2026-02-18 18:08:57,392][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data/dashboard_export_20260218T150854.zip +[2026-02-18 18:08:57,392][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:57,392][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:57,392][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Entry] +[2026-02-18 18:08:57,392][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data +[2026-02-18 18:08:57,392][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:57,393][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190201.zip +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Coherence:OK] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Exit] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: deck.gl Demo][Entry] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Coherence:OK] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Exit] +[2026-02-18 18:08:57,393][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:57,393][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 4. +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:57,394][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:08:58,118][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:58,120][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:08:58,120][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:08:59,784][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:08:59,786][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 4 to dashboard_export_20260218T150857.zip. +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:08:59,786][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:08:59,786][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Entry] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Coherence:OK] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Action] [Sanitize filename: dashboard_export_20260218T150857.zip][Exit] +[2026-02-18 18:08:59,787][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo/dashboard_export_20260218T150857.zip +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Entry] +[2026-02-18 18:08:59,787][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Apply retention policy][Entry] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:08:59,787][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:08:59,788][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190202.zip +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Exit] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Misc Charts][Entry] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Exit] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:08:59,788][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 3. +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:08:59,788][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:00,120][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:00,122][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:00,122][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:03,156][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:03,271][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:03,272][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 3 to dashboard_export_20260218T150900.zip. +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:03,272][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:03,272][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Entry] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Coherence:OK] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Action] [Sanitize filename: dashboard_export_20260218T150900.zip][Exit] +[2026-02-18 18:09:03,273][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts/dashboard_export_20260218T150900.zip +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Entry] +[2026-02-18 18:09:03,273][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:03,273][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190202.zip +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Coherence:OK] +[2026-02-18 18:09:03,273][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Exit] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: FCC New Coder Survey 2018][Entry] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Coherence:OK] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Exit] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:09:03,274][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 11. +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:03,274][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:04,123][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:04,125][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:04,125][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:08,111][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:08,151][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:08,152][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 11 to dashboard_export_20260218T150903.zip. +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:08,152][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Entry] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Coherence:OK] +[2026-02-18 18:09:08,152][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Action] [Sanitize filename: dashboard_export_20260218T150903.zip][Exit] +[2026-02-18 18:09:08,153][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018/dashboard_export_20260218T150903.zip +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Entry] +[2026-02-18 18:09:08,153][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018 +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:08,153][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190203.zip +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Coherence:OK] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Exit] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:08,153][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Unicode Test][Entry] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Coherence:OK] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Exit] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:09:08,154][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 8. +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:08,154][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:09,391][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:09,391][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:09,392][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 8 to dashboard_export_20260218T150908.zip. +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:09,392][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:09,392][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Entry] +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Coherence:OK] +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Action] [Sanitize filename: dashboard_export_20260218T150908.zip][Exit] +[2026-02-18 18:09:09,393][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test/dashboard_export_20260218T150908.zip +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:09,393][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Entry] +[2026-02-18 18:09:09,393][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test +[2026-02-18 18:09:09,394][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:09,394][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:09,394][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:09,394][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:09,395][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190203.zip +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Exit] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Video Game Sales][Entry] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Exit] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:09:09,395][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 7. +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:09,395][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:10,125][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:10,128][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:10,128][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:11,868][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:11,869][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:11,870][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 7 to dashboard_export_20260218T150909.zip. +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:11,870][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Entry] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Coherence:OK] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Action] [Sanitize filename: dashboard_export_20260218T150909.zip][Exit] +[2026-02-18 18:09:11,870][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales/dashboard_export_20260218T150909.zip +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:11,870][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Entry] +[2026-02-18 18:09:11,870][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:11,871][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190204.zip +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Exit] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Featured Charts][Entry] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Exit] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:09:11,871][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 6. +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:11,871][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:12,128][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:12,130][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:12,131][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:15,234][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:15,272][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:15,273][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 6 to dashboard_export_20260218T150912.zip. +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:15,273][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Entry] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Coherence:OK] +[2026-02-18 18:09:15,273][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Action] [Sanitize filename: dashboard_export_20260218T150912.zip][Exit] +[2026-02-18 18:09:15,273][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts/dashboard_export_20260218T150912.zip +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Entry] +[2026-02-18 18:09:15,274][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:15,274][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190204.zip +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Coherence:OK] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Exit] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:15,274][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Slack Dashboard][Entry] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Coherence:OK] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Exit] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-18 18:09:15,275][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 5. +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:15,275][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:16,131][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:16,134][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:16,134][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:17,333][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-18 18:09:17,370][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-18 18:09:17,371][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 5 to dashboard_export_20260218T150915.zip. +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-18 18:09:17,371][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Entry] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Coherence:OK] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Action] [Sanitize filename: dashboard_export_20260218T150915.zip][Exit] +[2026-02-18 18:09:17,371][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard/dashboard_export_20260218T150915.zip +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-18 18:09:17,371][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Entry] +[2026-02-18 18:09:17,371][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Apply retention policy][Entry] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 5 files according to retention policy +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-18 18:09:17,372][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [archive_exports][State] Removed by retention policy: dashboard_export_20260126T190204.zip +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Coherence:OK] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Exit] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-18 18:09:17,372][INFO][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [consolidate_archive_folders][Enter] Consolidating archives in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-18 18:09:17,372][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-18 18:09:17,372][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Enter] Starting cleanup of empty directories in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:09:17,373][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Exit] Removed 0 empty directories. +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-18 18:09:17,373][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-18 18:09:17,374][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task f7033e08-cbd8-437e-8d06-7e3cc06726b4 completed successfully +[2026-02-18 18:09:17,374][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-18 18:09:17,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-18 18:09:17,374][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-18 18:09:17,374][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,374][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-18 18:09:17,375][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-18 18:09:17,375][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,377][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-18 18:09:17,377][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-18 18:09:17,377][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,379][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-18 18:09:17,379][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-18 18:09:17,379][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task f7033e08-cbd8-437e-8d06-7e3cc06726b4 execution finished with status: TaskStatus.SUCCESS +[2026-02-18 18:09:17,379][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-18 18:09:17,379][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-18 18:09:17,379][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup +[2026-02-18 18:09:17,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:09:17,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-18 18:09:17,387][INFO][superset_tools_app] WebSocket connection accepted for task f7033e08-cbd8-437e-8d06-7e3cc06726b4 (source=None, level=None) +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-18 18:09:17,387][INFO][superset_tools_app] Starting log stream for task f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,387][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,389][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-18 18:09:17,389][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-18 18:09:17,389][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-18 18:09:17,389][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-18 18:09:17,391][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,391][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:09:17,391][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:09:17,392][INFO][superset_tools_app] Incoming request: GET /api/tasks/f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,393][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:09:17,394][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:09:17,394][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:09:17,394][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:09:17,394][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:09:17,396][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:09:17,396][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:09:17,398][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:09:17,398][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,398][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:09:17,399][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:09:17,399][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:09:17,399][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:09:17,399][INFO][superset_tools_app] Response status: 200 for /api/tasks/f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,400][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:09:17,400][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:09:17,482][INFO][superset_tools_app] Incoming request: GET /api/tasks/f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,483][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:09:17,484][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:09:17,484][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:09:17,484][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:09:17,484][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:09:17,487][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:09:17,487][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-18 18:09:17,491][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-18 18:09:17,492][INFO][superset_tools_app] Response status: 200 for /api/tasks/f7033e08-cbd8-437e-8d06-7e3cc06726b4 +[2026-02-18 18:09:17,495][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:09:17,496][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:09:43,112][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 18:09:43,113][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:09:43,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:09:43,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:09:43,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:09:43,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:09:43,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:09:43,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:09:43,118][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:09:43,118][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:09:43,119][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 18:09:43,120][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:09:43,120][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:09:43,143][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 18:09:43,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:09:43,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:09:43,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:09:43,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:09:43,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:09:43,148][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:09:43,149][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:09:43,151][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:09:43,152][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:09:43,152][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:09:43,152][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 18:09:43,153][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:09:43,153][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:09:43,163][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:09:43,163][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:09:43,163][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 18:09:43,164][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:09:43,164][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:09:43,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:09:43,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:09:43,165][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:09:44,777][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:09:44,777][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:09:44,777][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:09:44,778][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:09:44,778][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:09:45,706][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 18:09:45,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,713][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,713][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,714][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,714][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,714][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,714][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,714][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,715][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,715][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:09:45,715][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 18:09:45,715][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 18:09:45,715][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 18:09:45,717][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 18:09:45,718][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:09:45,718][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:09:45,718][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 18:09:45,719][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:09:45,719][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:12:57,863][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:12:57,863][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:12:57,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:12:57,864][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:12:57,864][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:12:57,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:12:57,865][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:12:57,865][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:12:57,865][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:12:57,865][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:12:57,865][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:12:57,867][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:12:57,867][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:12:57,868][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:12:57,882][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 18:12:57,882][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:12:57,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:12:57,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:12:57,883][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:12:57,883][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:12:57,884][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:12:57,884][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:12:57,885][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:12:57,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:12:57,885][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 18:12:57,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:12:57,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:12:57,894][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-18 18:12:57,895][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:12:57,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:12:57,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:12:57,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:12:57,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:12:57,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:12:57,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-18 18:12:57,898][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 18:12:57,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 18:12:57,899][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:12:57,899][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:12:57,904][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:12:57,904][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:12:57,904][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-18 18:12:57,904][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:12:57,904][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:12:57,905][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:12:57,905][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:12:57,905][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:12:57,905][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:12:58,796][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:12:58,796][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:12:58,796][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:12:58,796][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:12:58,796][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:12:59,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-18 18:12:59,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:12:59,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:12:59,101][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-18 18:12:59,101][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-18 18:12:59,101][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-18 18:12:59,102][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-18 18:12:59,103][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 18:12:59,103][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 18:12:59,103][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-18 18:12:59,104][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:12:59,104][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:04,701][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:13:04,702][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:13:04,703][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:04,703][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:04,703][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:04,703][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:04,704][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:04,704][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:04,705][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:13:04,705][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:13:04,705][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:13:04,706][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:13:04,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:04,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:04,730][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-18 18:13:04,731][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:04,735][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:13:04,735][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:13:04,735][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:04,736][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:04,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:04,736][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:04,737][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:04,737][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:04,737][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:04,738][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:04,740][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:04,740][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:04,739][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:04,741][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:04,744][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:13:04,744][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-18 18:13:04,744][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:13:04,744][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:04,745][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:04,746][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-18 18:13:04,746][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-18 18:13:04,746][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:04,746][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:04,746][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:04,746][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:04,746][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-18 18:13:04,747][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:04,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:04,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:04,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:04,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:15,271][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:15,272][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-18 18:13:15,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:15,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:15,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:15,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:15,273][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:15,274][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:15,274][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:15,275][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:15,277][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:15,278][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:15,279][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:15,280][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-18 18:13:15,280][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-18 18:13:15,281][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:15,281][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:15,281][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:15,281][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:15,281][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:15,283][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:15,283][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-18 18:13:15,285][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:15,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:15,286][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:15,287][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:15,288][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:15,288][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:15,288][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:15,288][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:15,288][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:15,290][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:15,290][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:15,292][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:15,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:15,293][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:15,294][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:15,294][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:15,294][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:15,294][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:15,294][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:15,295][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:15,295][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:15,295][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:15,295][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:15,295][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:15,296][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:15,296][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:15,297][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:15,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:17,921][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:17,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:17,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:17,923][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:17,923][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:17,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:17,924][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:17,924][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:17,925][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard +[2026-02-18 18:13:17,925][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:17,926][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:17,927][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:17,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:17,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:17,929][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:17,930][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:17,930][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:17,931][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:17,931][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:17,931][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:17,931][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:17,931][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:17,934][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:17,934][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:17,935][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:17,936][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:17,936][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:17,936][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:21,560][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:21,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:21,562][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:21,563][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:21,564][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:21,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:21,565][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:21,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:21,565][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:21,568][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:21,568][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:21,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:21,569][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:21,569][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:21,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:21,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:21,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:21,571][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:21,571][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:21,572][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:21,573][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:21,573][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:21,573][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:21,573][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:21,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:21,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:22,721][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:22,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:22,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:22,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:22,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:22,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:22,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:22,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:22,725][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Featured Charts +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:22,725][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:22,726][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:22,726][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:22,727][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:22,727][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:22,729][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:22,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:22,730][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:22,730][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:22,730][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:22,730][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:22,731][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:22,731][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:22,732][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:22,732][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:22,733][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Featured Charts +[2026-02-18 18:13:22,733][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:22,734][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:22,735][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:22,735][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:22,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:22,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:24,542][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:24,542][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:24,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:24,543][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:24,543][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:24,543][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:24,544][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:24,544][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:24,545][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:24,546][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:24,546][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:24,547][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:24,547][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:24,547][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:24,547][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:24,548][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:24,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:24,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:24,551][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:24,552][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:24,552][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:24,553][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:24,553][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:24,553][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:24,554][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:24,554][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:24,555][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:24,555][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:24,556][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:24,556][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:24,557][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:24,557][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:24,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:24,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:25,538][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:25,539][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:25,539][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:25,540][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:25,540][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:25,540][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:25,541][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:25,541][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:25,543][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Slack Dashboard +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:25,543][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:25,544][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:25,544][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:25,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:25,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:25,548][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:25,548][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:25,548][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:25,549][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:25,549][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:25,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:25,549][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:25,550][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:25,550][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:25,550][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:25,551][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Slack Dashboard +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:25,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:25,552][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:25,552][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:25,553][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:25,553][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:26,918][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:26,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:26,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:26,920][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:26,920][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:26,920][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:26,921][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:26,921][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:26,922][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:26,922][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:26,923][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:26,924][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:26,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:26,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:26,926][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:26,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:26,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:26,927][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:26,927][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:26,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:26,928][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:26,928][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:26,928][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:26,929][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:26,929][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:26,930][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:26,930][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:26,930][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:26,930][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:26,930][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:26,931][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:26,931][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:28,379][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:28,379][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:28,380][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:28,381][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:28,382][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Unicode Test +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:28,382][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:28,383][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:28,384][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:28,385][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:28,385][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:28,387][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:28,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:28,388][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:28,388][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:28,388][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:28,388][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:28,389][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:28,389][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:28,390][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:28,390][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:28,390][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:28,390][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:28,390][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:28,391][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Unicode Test +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test +[2026-02-18 18:13:28,391][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:28,392][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:28,392][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:28,392][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:28,392][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:28,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:28,393][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:30,246][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:30,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:30,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:30,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:30,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:30,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:30,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:30,249][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:30,250][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:30,251][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:30,251][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:30,252][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:30,252][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:30,252][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:30,252][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:30,252][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:30,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:30,253][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:30,255][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:30,255][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:30,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:30,256][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:30,256][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:30,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:30,257][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:30,257][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:30,258][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:30,259][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-18 18:13:30,259][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-18 18:13:30,260][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:30,260][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:30,260][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:30,260][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:30,260][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:30,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:30,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:30,931][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:30,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:30,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:30,932][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:30,932][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:30,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:30,933][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:30,933][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:30,934][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.REPOSITORY, subpath: None +[2026-02-18 18:13:30,934][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-18 18:13:30,935][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:30,935][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:30,935][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:30,935][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:30,935][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:30,936][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:30,936][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:32,637][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-18 18:13:32,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:32,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:32,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:32,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:32,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:32,639][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:32,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-18 18:13:32,641][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-18 18:13:32,642][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-18 18:13:32,642][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-18 18:13:32,642][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-18 18:13:32,642][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-18 18:13:32,642][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-18 18:13:32,642][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-18 18:13:32,643][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-18 18:13:32,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:32,644][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:36,107][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:13:36,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:36,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:36,108][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:36,108][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:36,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:36,109][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:36,109][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:36,110][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:13:36,110][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:13:36,110][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:13:36,112][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:13:36,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:36,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:36,126][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 18:13:36,127][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:36,127][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:36,128][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:36,128][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:36,128][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:36,129][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:36,129][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:13:36,131][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:13:36,131][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:13:36,131][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 18:13:36,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:36,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:36,139][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-18 18:13:36,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:36,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:36,140][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:36,141][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:36,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:36,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:36,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:36,143][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 18:13:36,143][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-18 18:13:36,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:13:36,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:13:36,144][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-18 18:13:36,144][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:13:36,144][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:13:36,149][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:13:36,149][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:13:36,149][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:13:36,149][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-18 18:13:36,149][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-18 18:13:36,149][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-18 18:13:36,149][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-18 18:13:36,149][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:13:36,149][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:13:36,150][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:13:36,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:13:36,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:13:36,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:13:37,544][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:13:37,544][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:13:37,544][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:13:37,544][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:13:37,544][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:13:37,985][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-18 18:13:37,985][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,986][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,986][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,986][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,986][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,987][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-18 18:13:37,987][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,994][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,994][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,994][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-18 18:13:37,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,995][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,995][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,995][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,995][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-18 18:13:37,995][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-18 18:13:37,995][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-18 18:13:37,995][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-18 18:13:37,996][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-18 18:13:37,996][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-18 18:13:37,996][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-18 18:13:37,997][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-18 18:13:37,997][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:37,997][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:38,310][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-18 18:13:38,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:38,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:38,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:38,311][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:38,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:38,312][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:38,313][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_settings][Entry] +[2026-02-18 18:13:38,315][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_config][Entry] +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:38,315][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:38,318][INFO][superset_tools_app] Response status: 200 for /api/settings +[2026-02-18 18:13:38,319][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:38,319][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:38,348][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:13:38,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:38,349][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:38,349][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:38,349][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:38,350][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:38,351][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:38,351][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:38,351][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:13:38,351][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:13:38,351][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:13:38,353][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:13:38,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:38,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:13:38,368][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated +[2026-02-18 18:13:38,369][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:13:38,369][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:13:38,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:13:38,370][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:13:38,370][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:13:38,370][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:13:38,370][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:13:38,371][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] +[2026-02-18 18:13:38,371][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-18 18:13:38,371][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-18 18:13:38,371][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-18 18:13:38,371][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-18 18:13:38,371][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-18 18:13:38,374][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-18 18:13:38,375][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-18 18:13:38,375][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-18 18:13:38,375][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-18 18:13:38,375][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated +[2026-02-18 18:13:38,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:13:38,377][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:15:04,163][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-18 18:15:04,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:15:04,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:15:04,165][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:15:04,165][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:15:04,165][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:15:04,165][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:15:04,165][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:15:04,166][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-18 18:15:04,166][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-18 18:15:04,166][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-18 18:15:04,166][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-18 18:15:04,167][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:15:04,167][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:15:04,179][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-18 18:15:04,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:15:04,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:15:04,180][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:15:04,180][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:15:04,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:15:04,181][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:15:04,181][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:15:04,182][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:15:04,182][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:15:04,182][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-18 18:15:04,183][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:15:04,183][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-18 18:15:04,193][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-18 18:15:04,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-18 18:15:04,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-18 18:15:04,195][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-18 18:15:04,195][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-18 18:15:04,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-18 18:15:04,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-18 18:15:04,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-18 18:15:04,198][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 18:15:04,198][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-18 18:15:04,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-18 18:15:04,199][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-18 18:15:04,206][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-18 18:15:04,206][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-18 18:15:04,206][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-18 18:15:04,207][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-18 18:15:04,207][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-18 18:15:04,207][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-18 18:15:04,207][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-18 18:15:04,207][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-18 18:15:05,473][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-18 18:15:05,474][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-18 18:15:05,474][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-18 18:15:05,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-18 18:15:05,474][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-18 18:15:06,041][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-18 18:15:06,042][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-18 18:15:06,042][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-18 18:15:06,042][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-18 18:15:06,045][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-18 18:15:06,045][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-18 18:15:06,045][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-18 18:15:06,045][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-18 18:15:06,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-18 18:15:06,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 08:55:37,420][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-19 08:55:37,421][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 08:55:37,421][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 08:55:37,421][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. +[2026-02-19 08:55:37,422][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials +[2026-02-19 08:55:37,422][INFO][superset_tools_app] Response status: 401 for /api/settings +[2026-02-19 08:55:37,451][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 08:55:37,451][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 08:55:37,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 08:55:37,452][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. +[2026-02-19 08:55:37,452][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials +[2026-02-19 08:55:37,452][INFO][superset_tools_app] Response status: 401 for /api/auth/me +[2026-02-19 09:41:43,634][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-19 09:41:43,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:43,636][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-19 09:41:43,636][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 09:41:43,636][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:43,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:43,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:43,815][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 09:41:43,817][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 09:41:43,817][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 09:41:43,817][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 09:41:43,817][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 09:41:43,818][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T06:41:43.818321][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 09:41:43,818][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 09:41:43,819][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:43,819][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:43,826][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:41:43,826][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:43,826][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:43,826][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:43,826][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:43,826][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:43,828][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:43,828][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:43,828][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:41:43,828][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:41:43,828][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:41:43,830][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:41:43,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:43,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:43,849][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-19 09:41:43,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:43,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:43,850][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:43,850][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:43,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:43,851][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:43,851][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 09:41:43,852][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 09:41:43,853][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-19 09:41:43,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:43,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:43,915][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 09:41:43,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:43,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:43,916][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:43,916][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:43,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:43,917][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:43,917][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:41:43,919][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:43,919][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:43,920][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 09:41:43,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:43,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:43,929][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 09:41:43,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:43,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:43,932][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:43,932][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:43,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:43,933][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:43,933][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 09:41:43,935][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:41:43,936][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:41:43,936][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:41:43,936][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:41:43,941][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:41:43,941][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:41:43,941][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 09:41:43,941][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:41:43,941][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:41:43,942][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:41:43,942][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:41:43,942][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:41:43,942][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:41:45,686][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:41:45,686][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:41:45,686][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:41:45,686][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:41:45,686][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:41:46,474][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:41:46,474][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,475][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,475][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,475][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,475][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,476][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 09:41:46,476][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,481][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,481][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,481][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:46,482][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 09:41:46,482][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 09:41:46,482][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 09:41:46,483][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 09:41:46,484][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:41:46,484][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:41:46,484][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 09:41:46,485][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:46,485][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:50,892][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:41:50,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:50,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:50,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:50,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:50,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:50,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:50,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:50,894][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:41:50,894][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:41:50,894][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:41:50,896][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:41:50,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:50,897][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:50,909][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-19 09:41:50,909][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:50,910][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:50,911][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:50,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:50,911][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:50,911][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:50,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:50,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:50,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:41:50,914][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:41:50,915][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:41:50,915][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:41:50,915][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-19 09:41:50,916][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:41:50,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:50,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:50,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:50,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:55,171][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:41:55,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:55,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:55,172][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:55,172][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:55,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:55,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:55,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:55,175][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:41:55,175][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:41:55,175][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:41:55,176][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:41:55,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:55,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:55,191][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 09:41:55,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:55,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:55,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:55,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:55,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:55,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:55,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:41:55,194][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:55,194][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:55,194][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 09:41:55,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:55,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:41:55,202][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 09:41:55,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:41:55,204][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:41:55,204][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:41:55,204][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:41:55,204][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:41:55,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:41:55,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:41:55,207][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 09:41:55,207][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:41:55,208][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:41:55,208][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:41:55,208][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:41:55,214][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:41:55,214][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:41:55,214][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 09:41:55,214][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:41:55,214][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:41:55,215][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:41:55,215][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:41:55,215][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:41:55,215][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:41:55,215][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:41:55,215][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:41:55,215][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:41:55,215][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:41:55,599][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:41:55,599][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:41:55,599][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:41:55,600][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:41:55,600][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:41:55,905][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,905][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,906][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,906][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,906][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,906][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,907][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 09:41:55,907][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 09:41:55,912][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,913][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,913][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,913][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,913][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,914][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,914][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,914][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,914][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:41:55,914][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 09:41:55,914][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 09:41:55,914][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 09:41:55,916][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 09:41:55,916][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:41:55,916][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:41:55,916][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 09:41:55,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:41:55,917][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:07,198][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-19 09:42:07,199][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/databases +[2026-02-19 09:42:07,200][INFO][superset_tools_app] Incoming request: GET /api/environments/ss2/databases +[2026-02-19 09:42:07,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [MappingService.__init__][Entry] +[2026-02-19 09:42:07,201][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-19 09:42:07,201][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-19 09:42:07,202][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:42:07,202][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:42:07,202][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:07,202][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:07,203][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:07,204][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:07,204][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:07,204][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:07,204][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:07,204][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:07,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:07,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:07,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:07,205][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss1 +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:42:07,206][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:42:07,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:42:07,207][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:07,207][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:07,211][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:07,212][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:07,212][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:07,549][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:07,549][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:07,549][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:07,549][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:07,549][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:07,772][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-19 09:42:07,772][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environment_databases][Entry] id=ss2 +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environments][Entry] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Coherence:OK] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Action] [get_environment_databases][Exit] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:42:07,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:42:07,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:07,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:07,774][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-19 09:42:07,774][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:07,774][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:07,778][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:07,778][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:08,908][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:08,908][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:08,908][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:08,909][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:08,909][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:09,418][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:09,419][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-19 09:42:09,419][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-19 09:42:09,420][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/databases +[2026-02-19 09:42:09,421][INFO][superset_tools_app] Response status: 200 for /api/environments/ss2/databases +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [get_database_mappings][Entry] source=ss1, target=ss2 +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [MappingService.get_suggestions][Entry] source=ss1, target=ss2 +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss1 +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-19 09:42:09,422][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:09,422][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-19 09:42:09,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:09,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:09,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:09,423][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-19 09:42:09,423][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:09,423][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:09,428][WARNING][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:42:09,428][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:09,428][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:09,428][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-19 09:42:09,428][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-19 09:42:09,428][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService._get_client][Entry] env_id=ss2 +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [get_environments][Entry] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-19 09:42:09,429][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [__init__][Entry] +[2026-02-19 09:42:09,429][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [_init_session][Entry] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:09,429][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:09,435][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:09,435][INFO][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Coherence:OK] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Action] [MappingService._get_client][Exit] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-19 09:42:09,435][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:09,435][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:09,436][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:09,436][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:09,436][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:09,436][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:42:09,436][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:09,436][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:09,774][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:09,774][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:09,774][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:09,774][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:09,774][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:09,880][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-19 09:42:09,880][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [SupersetClient.get_databases_summary][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [get_databases][Entry] +[2026-02-19 09:42:09,881][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Enter] Fetching databases. +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:09,881][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:09,881][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-19 09:42:09,881][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:09,881][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:10,206][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:10,206][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:10,206][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:10,206][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:10,206][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 3 +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:10,320][INFO][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] Found 3 databases. +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Coherence:OK] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Action] [get_databases][Exit] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Coherence:OK] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Action] [SupersetClient.get_databases_summary][Exit] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Coherence:OK] +[2026-02-19 09:42:10,320][DEBUG][superset_tools_app] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Action] [MappingService.get_suggestions][Exit] +[2026-02-19 09:42:10,322][INFO][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] Returning 3 database mapping suggestions +[2026-02-19 09:42:10,322][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Coherence:OK] +[2026-02-19 09:42:10,322][DEBUG][superset_tools_app] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Action] [get_database_mappings][Exit] +[2026-02-19 09:42:10,322][INFO][superset_tools_app] Response status: 200 for /api/dashboards/db-mappings +[2026-02-19 09:42:10,322][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:10,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:10,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:10,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:10,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:10,324][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:12,364][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 09:42:12,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:12,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:12,365][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:12,365][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:12,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [migrate_dashboards][Entry] source=ss1, target=ss2, count=1 +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:12,366][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-migration +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:42:12,367][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:12,369][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task b09d80b0-cc66-4ddb-9292-403bf1338756 created and scheduled for execution +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 09:42:12,369][INFO][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] Migration task created: b09d80b0-cc66-4ddb-9292-403bf1338756 for 1 dashboards +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Coherence:OK] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Action] [migrate_dashboards][Exit] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:12,369][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task b09d80b0-cc66-4ddb-9292-403bf1338756 for plugin 'Superset Dashboard Migration' +[2026-02-19 09:42:12,369][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin.execute][Entry] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Action] [MigrationPlugin.execute][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_environments][Entry] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-19 09:42:12,371][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-19 09:42:12,371][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:12,371][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-19 09:42:12,372][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:12,372][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:12,375][WARNING][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:42:12,375][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:12,375][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-19 09:42:12,375][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss2. +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [__init__][Entry] +[2026-02-19 09:42:12,375][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:12,375][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:12,376][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [_init_session][Entry] +[2026-02-19 09:42:12,376][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:12,376][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:12,379][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:12,379][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_dashboards][Entry] +[2026-02-19 09:42:12,379][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:12,379][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:12,380][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:12,380][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:42:12,380][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:12,380][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:12,722][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:12,722][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:12,723][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:12,723][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:12,723][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:13,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:42:13,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:13,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:13,006][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:42:13,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:42:13,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:42:13,007][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [export_dashboard][Entry] +[2026-02-19 09:42:13,007][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. +[2026-02-19 09:42:13,007][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:13,007][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:13,007][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:13,008][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:13,008][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:13,008][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:13,444][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:13,446][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:42:13,446][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:42:13,551][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:13,588][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:13,589][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260219T064213.zip. +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [Create temporary resource][Entry] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmp9e9djvjo.zip +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Entry] +[2026-02-19 09:42:13,589][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [create_temp_file][State] Created temporary file: /tmp/tmp9h_u27sv.zip +[2026-02-19 09:42:13,590][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [MigrationEngine.transform_zip][Entry] +[2026-02-19 09:42:13,590][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Extracting ZIP: /tmp/tmp9e9djvjo.zip +[2026-02-19 09:42:13,591][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][State] Found 1 dataset files. +[2026-02-19 09:42:13,591][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Transforming dataset: /tmp/tmpbyjy6rel/dashboard_export_20260219T064213/datasets/examples/cleaned_sales_data_19.yaml +[2026-02-19 09:42:13,610][INFO][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] Re-packaging ZIP to: /tmp/tmp9h_u27sv.zip (strip_databases=False) +[2026-02-19 09:42:13,612][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Coherence:OK] +[2026-02-19 09:42:13,612][DEBUG][superset_tools_app] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Action] [MigrationEngine.transform_zip][Exit] +[2026-02-19 09:42:13,612][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [import_dashboard][Entry] +[2026-02-19 09:42:13,612][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_validate_import_file][Entry] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Coherence:OK] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Action] [_validate_import_file][Exit] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [_do_import][Entry] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][State] Uploading file: /tmp/tmp9h_u27sv.zip +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [upload_file][Entry] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [headers][Entry] +[2026-02-19 09:42:13,613][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:13,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset2.bebesh.ru/api/v1 +[2026-02-19 09:42:13,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset2.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:13,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:13,933][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:13,933][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:13,933][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:13,934][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:13,934][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:13,934][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Coherence:OK] +[2026-02-19 09:42:13,934][DEBUG][superset_tools_app] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Action] [upload_file][Exit] +[2026-02-19 09:42:13,934][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_perform_upload][Entry] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Coherence:OK] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Action] [_perform_upload][Exit] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Coherence:OK] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Action] [_do_import][Exit] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Coherence:OK] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Action] [import_dashboard][Exit] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-19 09:42:14,646][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Coherence:OK] +[2026-02-19 09:42:14,647][DEBUG][superset_tools_app] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Action] [Create temporary resource][Exit] +[2026-02-19 09:42:14,647][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:14,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:14,647][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [MigrationPlugin][Exit] Migration finished. +[2026-02-19 09:42:14,648][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b09d80b0-cc66-4ddb-9292-403bf1338756 completed successfully +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:14,649][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,652][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:42:14,652][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:42:14,652][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,654][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:14,654][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:14,654][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b09d80b0-cc66-4ddb-9292-403bf1338756 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 09:42:14,654][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 09:42:14,654][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 09:42:14,655][INFO][superset_tools_app] Response status: 200 for /api/dashboards/migrate +[2026-02-19 09:42:14,656][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:14,656][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 09:42:14,665][INFO][superset_tools_app] WebSocket connection accepted for task b09d80b0-cc66-4ddb-9292-403bf1338756 (source=None, level=None) +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 09:42:14,665][INFO][superset_tools_app] Starting log stream for task b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,665][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,666][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 09:42:14,666][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 09:42:14,666][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 09:42:14,666][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 09:42:14,668][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,669][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:14,669][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:14,669][INFO][superset_tools_app] Incoming request: GET /api/tasks/b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,670][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:14,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:14,671][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:14,671][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:14,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:14,672][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:14,672][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:14,673][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:42:14,673][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,673][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:14,674][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:14,674][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:42:14,674][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:42:14,674][INFO][superset_tools_app] Response status: 200 for /api/tasks/b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:14,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:14,697][INFO][superset_tools_app] Incoming request: GET /api/tasks/b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,698][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:14,698][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:14,699][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:14,699][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:14,699][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:14,701][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:14,701][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:42:14,702][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:42:14,703][INFO][superset_tools_app] Response status: 200 for /api/tasks/b09d80b0-cc66-4ddb-9292-403bf1338756 +[2026-02-19 09:42:14,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:14,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:31,610][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 09:42:31,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:31,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:31,611][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:31,611][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:31,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:31,612][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:31,612][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=1, schedule=None +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:42:31,613][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:31,614][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:31,614][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:31,614][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b created and scheduled for execution +[2026-02-19 09:42:31,614][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 09:42:31,615][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: 804eeaea-6d09-42f5-b6a1-40c4f0cad80b for 1 dashboards +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:31,615][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b for plugin 'Superset Dashboard Backup' +[2026-02-19 09:42:31,615][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:31,616][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:42:31,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:42:31,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:42:31,617][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 09:42:31,618][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:42:31,618][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:42:31,624][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:42:31,624][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:42:31,624][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:42:31,933][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:42:31,933][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:42:31,933][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:42:31,933][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:31,933][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:32,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:42:32,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:42:32,105][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:42:32,105][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:42:32,105][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: TA-0001 Test dashboard][Entry] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Exit] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:32,106][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:32,106][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:32,242][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:32,243][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260219T064232.zip. +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:32,243][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Entry] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Coherence:OK] +[2026-02-19 09:42:32,243][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Exit] +[2026-02-19 09:42:32,243][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard/dashboard_export_20260219T064232.zip +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Entry] +[2026-02-19 09:42:32,244][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 3 files according to retention policy +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Coherence:OK] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Exit] +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,244][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: USA Births Names][Entry] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Coherence:OK] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Exit] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:32,245][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 2. +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:32,245][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:32,552][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:32,554][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 2 to dashboard_export_20260219T064232.zip. +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,554][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:32,555][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Entry] +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Coherence:OK] +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Exit] +[2026-02-19 09:42:32,555][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names/dashboard_export_20260219T064232.zip +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Entry] +[2026-02-19 09:42:32,555][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names +[2026-02-19 09:42:32,555][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Exit] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Sales Dashboard][Entry] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Exit] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:32,556][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:32,556][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:32,557][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:32,557][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:32,557][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:32,893][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:32,931][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260219T064232.zip. +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,931][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:32,931][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Entry] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Coherence:OK] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Exit] +[2026-02-19 09:42:32,932][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard/dashboard_export_20260219T064232.zip +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Entry] +[2026-02-19 09:42:32,932][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:32,932][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Coherence:OK] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Exit] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: COVID Vaccine Dashboard][Entry] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Coherence:OK] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Action] [Sanitize filename: COVID Vaccine Dashboard][Exit] +[2026-02-19 09:42:32,933][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:32,933][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 10. +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:32,934][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:33,198][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:33,199][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:33,199][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:33,199][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:33,200][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 10 to dashboard_export_20260219T064232.zip. +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:33,200][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Entry] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Action] [Sanitize filename: dashboard_export_20260219T064232.zip][Exit] +[2026-02-19 09:42:33,200][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard/dashboard_export_20260219T064232.zip +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Entry] +[2026-02-19 09:42:33,200][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-19 09:42:33,200][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: test1][Entry] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Action] [Sanitize filename: test1][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:33,201][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 12. +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:33,201][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:33,348][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:33,349][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 12 to dashboard_export_20260219T064233.zip. +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:33,349][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Entry] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Coherence:OK] +[2026-02-19 09:42:33,349][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Exit] +[2026-02-19 09:42:33,350][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/test1/dashboard_export_20260219T064233.zip +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Entry] +[2026-02-19 09:42:33,350][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/test1 +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Coherence:OK] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/test1][Exit] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:33,350][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: World Bank's Data][Entry] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Coherence:OK] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Action] [Sanitize filename: World Bank's Data][Exit] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:33,351][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 1. +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:33,351][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:33,448][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:33,450][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:42:33,451][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:42:36,961][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:37,035][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:37,035][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:37,036][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 1 to dashboard_export_20260219T064233.zip. +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:37,036][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Entry] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Action] [Sanitize filename: dashboard_export_20260219T064233.zip][Exit] +[2026-02-19 09:42:37,036][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data/dashboard_export_20260219T064233.zip +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Entry] +[2026-02-19 09:42:37,036][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data +[2026-02-19 09:42:37,036][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/World Bank's Data][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: deck.gl Demo][Entry] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Action] [Sanitize filename: deck.gl Demo][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:37,037][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 4. +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:37,037][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:37,275][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:37,277][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 4 to dashboard_export_20260219T064237.zip. +[2026-02-19 09:42:37,277][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:37,278][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Entry] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Exit] +[2026-02-19 09:42:37,278][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo/dashboard_export_20260219T064237.zip +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Entry] +[2026-02-19 09:42:37,278][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/deck.gl Demo][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Misc Charts][Entry] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Coherence:OK] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Action] [Sanitize filename: Misc Charts][Exit] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:37,279][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 3. +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:37,279][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:37,451][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,453][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:42:37,453][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:42:37,799][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:37,871][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:37,871][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:37,872][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 3 to dashboard_export_20260219T064237.zip. +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:37,872][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Entry] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Exit] +[2026-02-19 09:42:37,872][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts/dashboard_export_20260219T064237.zip +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:37,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Entry] +[2026-02-19 09:42:37,872][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Misc Charts][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: FCC New Coder Survey 2018][Entry] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Action] [Sanitize filename: FCC New Coder Survey 2018][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:37,873][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 11. +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:37,873][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:38,326][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:38,362][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:38,363][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 11 to dashboard_export_20260219T064237.zip. +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:38,363][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Entry] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Coherence:OK] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Action] [Sanitize filename: dashboard_export_20260219T064237.zip][Exit] +[2026-02-19 09:42:38,363][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018/dashboard_export_20260219T064237.zip +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:38,363][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Entry] +[2026-02-19 09:42:38,363][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018 +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Coherence:OK] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018][Exit] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Unicode Test][Entry] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Coherence:OK] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Action] [Sanitize filename: Unicode Test][Exit] +[2026-02-19 09:42:38,364][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:38,365][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 8. +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:38,365][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:38,453][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:38,454][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 8 to dashboard_export_20260219T064238.zip. +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,454][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:38,455][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Entry] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Coherence:OK] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Exit] +[2026-02-19 09:42:38,455][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test/dashboard_export_20260219T064238.zip +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Entry] +[2026-02-19 09:42:38,455][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:38,455][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Unicode Test][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Video Game Sales][Entry] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Action] [Sanitize filename: Video Game Sales][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:38,456][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 7. +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:38,456][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:38,655][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:38,655][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:38,656][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 7 to dashboard_export_20260219T064238.zip. +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:38,656][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Entry] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Coherence:OK] +[2026-02-19 09:42:38,656][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Exit] +[2026-02-19 09:42:38,656][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales/dashboard_export_20260219T064238.zip +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Entry] +[2026-02-19 09:42:38,657][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Video Game Sales][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Featured Charts][Entry] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Action] [Sanitize filename: Featured Charts][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:38,657][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 6. +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:38,657][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:39,074][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:39,077][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 6 to dashboard_export_20260219T064238.zip. +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:39,077][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Entry] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Action] [Sanitize filename: dashboard_export_20260219T064238.zip][Exit] +[2026-02-19 09:42:39,078][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts/dashboard_export_20260219T064238.zip +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Entry] +[2026-02-19 09:42:39,078][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Slack Dashboard][Entry] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Action] [Sanitize filename: Slack Dashboard][Exit] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:42:39,078][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 5. +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:42:39,078][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:42:39,079][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:42:39,079][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:42:39,079][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:42:39,376][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:42:39,378][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 5 to dashboard_export_20260219T064239.zip. +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:42:39,378][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:42:39,379][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Entry] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Coherence:OK] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Action] [Sanitize filename: dashboard_export_20260219T064239.zip][Exit] +[2026-02-19 09:42:39,379][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard/dashboard_export_20260219T064239.zip +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Entry] +[2026-02-19 09:42:39,379][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:42:39,379][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 6 files according to retention policy +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Coherence:OK] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Slack Dashboard][Exit] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:42:39,380][INFO][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [consolidate_archive_folders][Enter] Consolidating archives in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:42:39,380][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:42:39,381][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Enter] Starting cleanup of empty directories in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:42:39,381][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Exit] Removed 0 empty directories. +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 09:42:39,381][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 09:42:39,382][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b completed successfully +[2026-02-19 09:42:39,382][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:42:39,382][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:42:39,383][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:42:39,383][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,383][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:42:39,383][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:42:39,383][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,385][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:42:39,386][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:42:39,386][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,387][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:42:39,388][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:42:39,388][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b execution finished with status: TaskStatus.SUCCESS +[2026-02-19 09:42:39,388][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 09:42:39,388][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 09:42:39,388][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup +[2026-02-19 09:42:39,389][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:39,389][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:39,395][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 09:42:39,396][INFO][superset_tools_app] WebSocket connection accepted for task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b (source=None, level=None) +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 09:42:39,396][INFO][superset_tools_app] Starting log stream for task 804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,396][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,397][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,399][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 09:42:39,399][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 09:42:39,399][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 09:42:39,399][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 09:42:39,400][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,401][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:39,401][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:39,401][INFO][superset_tools_app] Incoming request: GET /api/tasks/804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,401][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:39,402][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:39,402][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:39,402][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:39,402][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:39,403][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:39,403][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:39,404][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:42:39,404][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,405][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:39,405][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:39,405][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:42:39,405][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:42:39,405][INFO][superset_tools_app] Response status: 200 for /api/tasks/804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,406][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:39,407][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:42:39,448][INFO][superset_tools_app] Incoming request: GET /api/tasks/804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,450][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 09:42:39,450][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:42:39,451][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:42:39,451][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:42:39,451][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:42:39,452][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:42:39,452][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:42:39,454][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:42:39,455][INFO][superset_tools_app] Response status: 200 for /api/tasks/804eeaea-6d09-42f5-b6a1-40c4f0cad80b +[2026-02-19 09:42:39,456][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:42:39,457][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:03,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 09:48:03,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:03,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:03,112][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,116][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,120][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,121][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,121][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,122][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,122][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,123][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,124][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 09:48:03,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,124][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,124][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,292][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,293][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,293][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,293][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 09:48:03,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 09:48:03,295][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,295][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,524][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 09:48:03,524][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 09:48:03,524][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 09:48:03,524][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 09:48:03,525][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 09:48:03,525][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:03,525][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 09:48:03,525][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 09:48:03,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:48:03,526][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:48:03,536][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:03,537][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:03,537][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 09:48:03,537][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 09:48:03,537][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 09:48:03,538][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 09:48:03,538][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 09:48:03,549][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 09:48:03,550][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 09:48:03,550][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 09:48:03,551][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:48:03,551][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 09:48:03,551][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 09:48:03,551][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 09:48:03,584][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 09:48:03,584][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:48:03,585][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 09:48:03,720][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:48:03,720][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 09:48:03,721][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 09:48:03,721][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 09:48:12,616][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-19 09:48:12,618][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:12,618][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-19 09:48:12,618][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 09:48:12,618][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:12,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:12,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:12,806][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 09:48:12,809][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 09:48:12,809][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 09:48:12,809][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 09:48:12,809][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 09:48:12,810][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 09:48:12,810][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T06:48:12.810269][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 09:48:12,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 09:48:12,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 09:48:12,810][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 09:48:12,811][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 09:48:12,813][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 09:48:12,813][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-19 09:48:12,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:12,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:12,820][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:48:12,821][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:12,821][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:12,821][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:12,822][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:12,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:12,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:12,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:12,823][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:48:12,823][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:48:12,823][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:48:12,827][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:48:12,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:12,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:12,851][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-19 09:48:12,852][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:12,852][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:12,852][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:12,852][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:12,852][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:12,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:12,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 09:48:12,854][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 09:48:12,854][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-19 09:48:12,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:12,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:13,225][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 09:48:13,227][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:13,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:13,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:13,228][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:13,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:13,230][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:13,230][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:48:13,231][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:13,231][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:13,232][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 09:48:13,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:13,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:13,242][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 09:48:13,243][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:13,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:13,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:13,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:13,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:13,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:13,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:48:13,247][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:48:13,247][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 09:48:13,247][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:48:13,248][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:48:13,253][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:48:13,253][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:48:13,253][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 09:48:13,253][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:48:13,253][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:48:13,254][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:48:13,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:48:13,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:48:13,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:48:13,573][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:48:13,573][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:48:13,573][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:48:13,574][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:48:13,574][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:48:13,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:48:13,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:48:13,814][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:48:13,814][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:48:13,814][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,815][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 09:48:13,815][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,816][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,816][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,816][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 09:48:13,816][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,817][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,817][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,817][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 09:48:13,821][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 09:48:13,825][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,825][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,825][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,825][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,826][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,826][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,826][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,826][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,826][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,826][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,827][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,827][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:48:13,827][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 09:48:13,827][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 09:48:13,827][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 09:48:13,828][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 09:48:13,828][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:48:13,828][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:48:13,828][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 09:48:13,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:13,829][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:49,477][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 09:48:49,479][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:49,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:49,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:49,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:49,479][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:49,480][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:49,480][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:49,481][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=1, schedule=None +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:48:49,482][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,488][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:48:49,489][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task fb7dae81-564a-4050-8706-0490d3879ca4 created and scheduled for execution +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 09:48:49,489][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: fb7dae81-564a-4050-8706-0490d3879ca4 for 1 dashboards +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,489][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:49,490][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task fb7dae81-564a-4050-8706-0490d3879ca4 for plugin 'Superset Dashboard Backup' +[2026-02-19 09:48:49,490][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:48:49,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:48:49,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:48:49,493][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:48:49,497][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:48:49,497][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:48:49,497][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:48:49,540][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:49,544][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:48:49,544][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:48:49,803][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:48:49,803][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:48:49,803][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:48:49,803][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:48:49,803][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:48:50,042][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,042][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:Failed] name 'dashboard_count' is not defined +[2026-02-19 09:48:50,043][ERROR][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task fb7dae81-564a-4050-8706-0490d3879ca4 failed: name 'dashboard_count' is not defined +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:48:50,043][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:48:50,044][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,046][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:48:50,046][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:48:50,046][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,049][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:48:50,049][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:48:50,049][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task fb7dae81-564a-4050-8706-0490d3879ca4 execution finished with status: TaskStatus.FAILED +[2026-02-19 09:48:50,049][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 09:48:50,049][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 09:48:50,049][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup +[2026-02-19 09:48:50,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:50,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:50,062][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 09:48:50,063][INFO][superset_tools_app] WebSocket connection accepted for task fb7dae81-564a-4050-8706-0490d3879ca4 (source=None, level=None) +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 09:48:50,063][INFO][superset_tools_app] Starting log stream for task fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,063][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,076][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 09:48:50,077][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 09:48:50,077][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 09:48:50,077][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 09:48:50,079][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,079][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:48:50,079][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:48:50,080][INFO][superset_tools_app] Incoming request: GET /api/tasks/fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,081][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:50,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:50,081][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:50,081][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:50,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:50,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:50,083][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:50,084][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:48:50,085][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,085][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:48:50,085][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:48:50,085][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:48:50,085][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:48:50,085][INFO][superset_tools_app] Response status: 200 for /api/tasks/fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:50,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:48:50,107][INFO][superset_tools_app] Incoming request: GET /api/tasks/fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,108][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:48:50,109][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:48:50,109][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:48:50,109][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:48:50,109][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:48:50,110][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:48:50,110][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:48:50,112][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:48:50,113][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,113][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:48:50,113][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:48:50,113][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:48:50,113][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:48:50,113][INFO][superset_tools_app] Response status: 200 for /api/tasks/fb7dae81-564a-4050-8706-0490d3879ca4 +[2026-02-19 09:48:50,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:48:50,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:56:39,048][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 09:56:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:56:39,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:56:39,048][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 09:56:39,051][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,052][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,056][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,056][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,057][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:56:39,057][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,058][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,058][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,243][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,243][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,243][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,244][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 09:56:39,245][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,245][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,490][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 09:56:39,491][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 09:56:39,491][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 09:56:39,491][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 09:56:39,491][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:56:39,491][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,491][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 09:56:39,492][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 09:56:39,492][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:56:39,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:56:39,504][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:56:39,505][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 09:56:39,505][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 09:56:39,505][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 09:56:39,516][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 09:56:39,516][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 09:56:39,517][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 09:56:39,517][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 09:56:39,517][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 09:56:39,517][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 09:56:39,517][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 09:56:39,518][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:56:39,518][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:56:39,518][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 09:56:39,518][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 09:56:39,518][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 09:56:39,518][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 09:56:39,562][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 09:56:39,562][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 09:56:39,562][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 09:56:39,720][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:56:39,720][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 09:56:39,721][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 09:56:39,721][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 09:56:57,072][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-19 09:56:57,073][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:56:57,073][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-19 09:56:57,074][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 09:56:57,074][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:56:57,077][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:56:57,078][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:56:57,266][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 09:56:57,269][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 09:56:57,269][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 09:56:57,269][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 09:56:57,269][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 09:56:57,270][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 09:56:57,270][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T06:56:57.270759][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 09:56:57,270][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 09:56:57,270][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 09:56:57,270][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 09:56:57,272][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 09:56:57,274][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 09:56:57,275][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-19 09:56:57,275][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:56:57,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:56:57,283][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:56:57,284][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:56:57,284][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:56:57,285][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:56:57,285][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:56:57,285][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:56:57,286][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:56:57,286][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:56:57,286][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:56:57,286][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:56:57,286][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:56:57,288][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:56:57,288][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:56:57,289][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:56:57,320][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-19 09:56:57,320][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:56:57,321][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 09:56:57,322][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 09:56:57,322][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-19 09:56:57,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:56:57,323][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:56:57,774][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 09:56:57,775][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:56:57,776][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:56:57,776][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:56:57,776][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:56:57,776][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:56:57,777][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:56:57,777][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:56:57,778][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:56:57,779][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 09:56:57,779][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:56:57,779][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:56:57,779][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:56:57,779][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:56:57,779][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:56:57,780][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 09:56:57,781][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:56:57,782][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:56:57,794][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 09:56:57,795][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:56:57,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:56:57,796][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:56:57,796][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:56:57,796][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:56:57,796][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:56:57,797][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:56:57,798][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:56:57,799][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 09:56:57,799][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:56:57,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 09:56:57,800][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:56:57,800][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:56:57,806][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:56:57,806][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:56:57,806][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 09:56:57,807][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:56:57,807][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:56:57,807][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:56:57,807][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:56:57,807][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:56:58,127][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:56:58,128][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:56:58,128][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:56:58,128][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:56:58,128][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:56:58,274][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:56:58,274][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:56:58,274][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:56:58,274][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,275][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,275][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,275][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,275][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,275][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,280][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 09:56:58,280][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,285][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,285][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 09:56:58,285][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 09:56:58,286][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 09:56:58,286][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 09:56:58,287][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 09:56:58,287][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 09:56:58,287][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 09:56:58,287][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 09:56:58,287][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 09:56:58,287][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:56:58,287][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:56:58,288][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 09:56:58,288][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:56:58,288][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:04,192][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 09:57:04,193][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:04,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:04,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:04,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:04,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:04,195][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:04,195][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=1, schedule=None +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 09:57:04,196][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 09:57:04,197][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 09:57:04,197][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:04,197][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:04,197][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,201][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:04,201][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:04,201][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 1a683462-28ad-43c1-9b31-e93eee7402e4 created and scheduled for execution +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 09:57:04,202][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: 1a683462-28ad-43c1-9b31-e93eee7402e4 for 1 dashboards +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:04,202][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 1a683462-28ad-43c1-9b31-e93eee7402e4 for plugin 'Superset Dashboard Backup' +[2026-02-19 09:57:04,202][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,204][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:04,204][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environments][Entry] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,205][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:57:04,206][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:57:04,206][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:57:04,206][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:57:04,210][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:57:04,210][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:57:04,210][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] +[2026-02-19 09:57:04,210][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:57:04,210][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:57:04,210][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:57:04,210][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:57:04,211][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:57:04,519][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:57:04,520][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:57:04,520][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:57:04,520][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:04,520][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:57:04,672][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Sales Dashboard][Entry] +[2026-02-19 09:57:04,672][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Coherence:OK] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Exit] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:57:04,673][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:04,673][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:05,049][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:57:05,086][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:57:05,087][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:57:05,087][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:57:05,087][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:57:05,087][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:57:05,088][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260219T065704.zip. +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:57:05,088][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Entry] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Coherence:OK] +[2026-02-19 09:57:05,088][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Action] [Sanitize filename: dashboard_export_20260219T065704.zip][Exit] +[2026-02-19 09:57:05,088][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard/dashboard_export_20260219T065704.zip +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Entry] +[2026-02-19 09:57:05,089][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 7 files according to retention policy +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Coherence:OK] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Exit] +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,089][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:05,090][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:05,090][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:57:05,090][INFO][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [consolidate_archive_folders][Enter] Consolidating archives in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:05,090][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:57:05,090][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:57:05,090][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:57:05,090][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Enter] Starting cleanup of empty directories in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:05,091][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Exit] Removed 0 empty directories. +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 09:57:05,091][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 09:57:05,092][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 1a683462-28ad-43c1-9b31-e93eee7402e4 completed successfully +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:05,092][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,097][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:57:05,098][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:57:05,098][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,099][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:05,099][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:05,099][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 1a683462-28ad-43c1-9b31-e93eee7402e4 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 09:57:05,099][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 09:57:05,099][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 09:57:05,099][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup +[2026-02-19 09:57:05,100][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:05,100][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:05,108][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 09:57:05,109][INFO][superset_tools_app] WebSocket connection accepted for task 1a683462-28ad-43c1-9b31-e93eee7402e4 (source=None, level=None) +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 09:57:05,109][INFO][superset_tools_app] Starting log stream for task 1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,109][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,111][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 09:57:05,111][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 09:57:05,111][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 09:57:05,111][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 09:57:05,113][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,114][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:05,114][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:05,114][INFO][superset_tools_app] Incoming request: GET /api/tasks/1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,115][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:05,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:05,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:05,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:05,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:05,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:05,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:57:05,118][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:57:05,118][INFO][superset_tools_app] Response status: 200 for /api/tasks/1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:05,120][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:05,166][INFO][superset_tools_app] Incoming request: GET /api/tasks/1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,167][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:05,167][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:05,168][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:05,168][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:05,168][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:05,169][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:05,169][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:57:05,171][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:57:05,172][INFO][superset_tools_app] Response status: 200 for /api/tasks/1a683462-28ad-43c1-9b31-e93eee7402e4 +[2026-02-19 09:57:05,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:05,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:36,399][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:36,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [backup_dashboards][Entry] env=ss1, count=3, schedule=None +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [get_environments][Entry] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [TaskManager.create_task][Entry] plugin_id=superset-backup +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 09:57:36,401][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 09:57:36,402][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:36,402][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:36,402][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:36,404][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task a7bf256e-bb87-40cd-8324-a7481050ebf2 created and scheduled for execution +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 09:57:36,404][INFO][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] Backup task created: a7bf256e-bb87-40cd-8324-a7481050ebf2 for 3 dashboards +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Coherence:OK] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Action] [backup_dashboards][Exit] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:36,404][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:36,405][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:36,405][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task a7bf256e-bb87-40cd-8324-a7481050ebf2 for plugin 'Superset Dashboard Backup' +[2026-02-19 09:57:36,405][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environments][Entry] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,406][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [has_environments][Entry] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Action] [has_environments][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:57:36,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 09:57:36,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 09:57:36,407][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 09:57:36,411][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 09:57:36,411][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 09:57:36,411][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_dashboards][Entry] +[2026-02-19 09:57:36,411][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 09:57:36,411][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 09:57:36,412][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 09:57:36,412][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:36,412][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:36,412][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 09:57:36,412][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 09:57:36,412][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 09:57:36,412][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 09:57:36,412][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 09:57:36,746][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 09:57:36,746][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 09:57:36,746][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 09:57:36,746][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:36,746][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 09:57:36,892][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: TA-0001 Test dashboard][Entry] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Coherence:OK] +[2026-02-19 09:57:36,892][DEBUG][superset_tools_app] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Action] [Sanitize filename: TA-0001 Test dashboard][Exit] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:57:36,893][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 13. +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:36,893][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:37,007][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:57:37,007][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:57:37,007][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:57:37,008][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 13 to dashboard_export_20260219T065736.zip. +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:57:37,008][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Entry] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Action] [Sanitize filename: dashboard_export_20260219T065736.zip][Exit] +[2026-02-19 09:57:37,008][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard/dashboard_export_20260219T065736.zip +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:57:37,008][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Entry] +[2026-02-19 09:57:37,008][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 4 files according to retention policy +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Coherence:OK] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/TA-0001 Test dashboard][Exit] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: USA Births Names][Entry] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Coherence:OK] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Action] [Sanitize filename: USA Births Names][Exit] +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:57:37,009][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 2. +[2026-02-19 09:57:37,009][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:57:37,010][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:37,010][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:37,010][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:57:37,010][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:37,010][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:37,305][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:57:37,306][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:57:37,306][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:57:37,307][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 2 to dashboard_export_20260219T065737.zip. +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:57:37,307][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Entry] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Exit] +[2026-02-19 09:57:37,307][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names/dashboard_export_20260219T065737.zip +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Entry] +[2026-02-19 09:57:37,307][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Apply retention policy][Entry] +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 7 files according to retention policy +[2026-02-19 09:57:37,307][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/USA Births Names][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Sanitize filename: Sales Dashboard][Entry] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Action] [Sanitize filename: Sales Dashboard][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [export_dashboard][Entry] +[2026-02-19 09:57:37,308][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Enter] Exporting dashboard 9. +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [request][Entry] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [headers][Entry] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 09:57:37,308][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 09:57:37,508][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,511][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:57:37,511][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:57:37,641][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_validate_export_response][Entry] +[2026-02-19 09:57:37,678][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Coherence:OK] +[2026-02-19 09:57:37,678][DEBUG][superset_tools_app] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Action] [_validate_export_response][Exit] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [_resolve_export_filename][Entry] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [Get filename from headers][Entry] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Coherence:OK] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Action] [Get filename from headers][Exit] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Coherence:OK] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Action] [_resolve_export_filename][Exit] +[2026-02-19 09:57:37,679][INFO][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] Exported dashboard 9 to dashboard_export_20260219T065737.zip. +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Coherence:OK] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Action] [export_dashboard][Exit] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Save and unpack dashboard][Entry] +[2026-02-19 09:57:37,679][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][Enter] Processing dashboard. Unpack: False +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Entry] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Coherence:OK] +[2026-02-19 09:57:37,679][DEBUG][superset_tools_app] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Action] [Sanitize filename: dashboard_export_20260219T065737.zip][Exit] +[2026-02-19 09:57:37,680][INFO][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [save_and_unpack_dashboard][State] Dashboard saved to: /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard/dashboard_export_20260219T065737.zip +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Coherence:OK] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Action] [Save and unpack dashboard][Exit] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Entry] +[2026-02-19 09:57:37,680][INFO][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [archive_exports][Enter] Managing archive in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Apply retention policy][Entry] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [apply_retention_policy][State] Keeping 8 files according to retention policy +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Coherence:OK] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Action] [Apply retention policy][Exit] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Coherence:OK] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Action] [Archive exports in /home/busya/dev/ss-tools-storage/backups/SS1/Sales Dashboard][Exit] +[2026-02-19 09:57:37,680][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:57:37,681][INFO][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [consolidate_archive_folders][Enter] Consolidating archives in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Consolidate archives in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:57:37,681][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Entry] +[2026-02-19 09:57:37,681][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Enter] Starting cleanup of empty directories in /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:37,682][INFO][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [remove_empty_directories][Exit] Removed 0 empty directories. +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Coherence:OK] +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Action] [Remove empty directories in /home/busya/dev/ss-tools-storage/backups/SS1][Exit] +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 09:57:37,682][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 09:57:37,683][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task a7bf256e-bb87-40cd-8324-a7481050ebf2 completed successfully +[2026-02-19 09:57:37,683][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [name][Entry] +[2026-02-19 09:57:37,683][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 09:57:37,683][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 09:57:37,684][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,684][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 09:57:37,684][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 09:57:37,684][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,686][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 09:57:37,686][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 09:57:37,686][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,687][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 09:57:37,687][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 09:57:37,687][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task a7bf256e-bb87-40cd-8324-a7481050ebf2 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 09:57:37,687][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 09:57:37,687][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 09:57:37,687][INFO][superset_tools_app] Response status: 200 for /api/dashboards/backup +[2026-02-19 09:57:37,688][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:37,688][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:37,694][DEBUG][superset_tools_app] [websocket_endpoint][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 09:57:37,695][INFO][superset_tools_app] WebSocket connection accepted for task a7bf256e-bb87-40cd-8324-a7481050ebf2 (source=None, level=None) +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 09:57:37,695][INFO][superset_tools_app] Starting log stream for task a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,695][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,696][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 09:57:37,696][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 09:57:37,696][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 09:57:37,696][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 09:57:37,698][DEBUG][superset_tools_app] [TaskManager.get_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,698][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:37,698][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:37,698][INFO][superset_tools_app] Incoming request: GET /api/tasks/a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,699][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:37,699][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:37,700][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:37,700][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:37,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:37,700][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:37,700][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:57:37,701][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:57:37,702][INFO][superset_tools_app] Response status: 200 for /api/tasks/a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:37,702][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:37,738][INFO][superset_tools_app] Incoming request: GET /api/tasks/a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,740][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:37,740][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:37,741][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:37,741][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:37,741][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:37,743][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:37,743][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:37,745][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 09:57:37,745][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,745][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 09:57:37,745][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 09:57:37,745][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 09:57:37,746][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 09:57:37,746][INFO][superset_tools_app] Response status: 200 for /api/tasks/a7bf256e-bb87-40cd-8324-a7481050ebf2 +[2026-02-19 09:57:37,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:37,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:48,358][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 09:57:48,359][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:48,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:48,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:48,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:48,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:48,360][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:48,360][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:48,360][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 09:57:48,360][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 09:57:48,360][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 09:57:48,362][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 09:57:48,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:48,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:48,378][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-19 09:57:48,379][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:48,380][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:48,380][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:48,381][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:48,382][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:48,383][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 09:57:48,384][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 09:57:48,385][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-19 09:57:48,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:48,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:48,389][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:48,390][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:48,390][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:48,390][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:48,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:48,392][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:49,725][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:49,726][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:49,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:49,727][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:49,727][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:49,727][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:49,728][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:49,728][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:49,731][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:49,732][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:49,732][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:49,732][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:49,734][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:49,734][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:49,734][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:49,735][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:49,735][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:49,736][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:49,736][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:49,736][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:49,737][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:49,738][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:49,740][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:49,741][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:57:49,741][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:49,742][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:49,742][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:49,742][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:49,742][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:49,742][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:49,742][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:49,743][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:49,745][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:49,746][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:49,746][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:49,746][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:49,746][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:49,746][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:49,747][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:49,747][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:49,749][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:57:49,749][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:57:49,750][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:49,751][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:49,751][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:49,751][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:49,751][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:49,752][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:49,752][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:51,645][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:51,645][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:51,646][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:51,646][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:51,646][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:51,646][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:51,647][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:51,647][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:51,648][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:51,649][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:51,649][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:51,649][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:51,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:51,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:57:51,652][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:57:51,652][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:57:51,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:51,655][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/COVID Vaccine Dashboard +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:57:51,655][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/COVID Vaccine Dashboard +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:57:51,656][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:57:51,656][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:57:51,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:57:51,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:00,586][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:00,587][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:00,588][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:00,588][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:00,588][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:00,588][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:00,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:00,589][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:00,590][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:00,591][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:00,591][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:00,592][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:00,593][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:00,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:00,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:00,596][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:00,597][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:00,597][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:00,598][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:00,598][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:00,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:00,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:00,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:00,599][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:00,600][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:00,600][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:00,601][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:00,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:00,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:01,913][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:01,914][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:01,914][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:01,914][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:01,914][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:01,914][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:01,916][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:01,916][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:01,917][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/FCC New Coder Survey 2018 +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:01,917][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018 +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:01,918][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:01,918][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:01,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:01,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:01,921][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:01,921][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:01,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:01,922][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:01,922][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:01,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:01,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:01,923][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:01,924][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:01,925][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/FCC New Coder Survey 2018 +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:01,925][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/FCC New Coder Survey 2018 +[2026-02-19 09:58:01,926][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:01,926][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:01,926][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:01,926][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:01,926][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:01,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:01,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:03,761][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:03,763][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:03,763][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:03,763][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:03,764][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:03,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:03,764][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:03,764][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:03,765][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:03,765][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:58:03,766][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:03,767][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:03,767][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:03,767][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:03,767][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:03,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:03,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:03,770][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:03,771][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:03,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:03,771][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:03,771][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:03,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:03,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:03,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:03,773][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:03,773][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:03,774][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:03,775][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:03,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:03,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:05,241][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:05,242][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:05,242][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:05,243][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:05,243][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:05,243][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:05,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:05,244][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:05,245][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:05,245][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:05,245][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:05,245][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:05,245][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:05,246][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Featured Charts +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:05,246][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-19 09:58:05,247][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:05,247][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:05,247][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:05,247][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:05,248][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:05,249][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:05,249][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 09:58:05,251][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 09:58:05,252][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 09:58:05,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 09:58:05,253][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 09:58:05,253][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 09:58:05,253][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 09:58:05,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 09:58:05,254][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 09:58:05,254][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:05,255][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1/Featured Charts +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 09:58:05,255][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1/Featured Charts +[2026-02-19 09:58:05,256][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 09:58:05,256][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 09:58:05,256][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 09:58:05,256][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 09:58:05,256][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 09:58:05,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 09:58:05,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 10:09:47,865][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 10:09:47,866][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 10:09:47,867][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 10:09:47,867][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 10:09:47,867][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 10:09:47,867][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 10:09:47,869][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 10:09:47,869][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 10:09:47,869][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 10:09:47,869][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 10:09:47,870][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 10:09:47,871][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 10:09:47,872][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 10:09:47,873][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 10:09:47,885][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 10:09:47,886][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 10:09:47,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 10:09:47,886][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 10:09:47,886][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 10:09:47,886][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 10:09:47,887][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 10:09:47,887][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:09:47,889][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 10:09:47,889][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 10:09:47,890][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 10:09:47,890][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 10:09:47,890][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 10:09:47,890][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 10:09:47,890][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 10:09:47,891][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 10:09:47,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 10:09:47,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 10:09:47,893][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 10:09:47,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 10:09:47,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 10:09:47,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 10:09:47,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 10:09:47,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 10:09:47,894][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:09:47,895][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:09:47,895][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 10:09:47,896][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 10:09:47,897][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 10:09:47,897][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 10:09:47,897][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 10:09:47,897][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 10:09:47,897][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 10:09:47,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 10:09:47,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 10:09:47,900][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 10:09:47,900][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 10:09:47,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 10:09:47,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 10:09:47,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 10:09:47,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 10:09:47,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 10:09:47,902][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:09:47,903][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:09:47,903][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 10:09:47,904][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 10:09:47,905][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 10:09:47,905][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 10:09:47,905][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 10:09:47,905][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 10:09:47,905][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 10:09:47,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 10:20:06,307][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 10:20:06,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:06,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:06,307][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,310][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,311][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,312][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:06,312][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,313][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,313][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,314][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,314][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 10:20:06,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 10:20:06,550][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,797][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,798][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 10:20:06,799][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 10:20:06,799][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 10:20:06,799][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 10:20:06,799][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:06,799][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 10:20:06,799][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 10:20:06,800][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:06,800][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:06,808][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:06,809][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:06,809][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 10:20:06,809][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 10:20:06,809][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 10:20:06,810][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 10:20:06,819][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 10:20:06,820][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 10:20:06,820][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 10:20:06,821][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:06,821][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 10:20:06,821][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 10:20:06,821][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 10:20:06,852][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 10:20:06,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:06,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:47,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 10:20:47,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:47,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:47,554][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,557][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:47,558][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,559][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,559][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,560][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,560][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:47,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:47,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 10:20:47,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,562][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,562][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:47,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,772][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,772][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:47,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:47,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:47,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:47,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 10:20:47,774][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 10:20:47,775][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:47,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:48,048][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:48,049][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 10:20:48,049][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 10:20:48,049][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 10:20:48,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 10:20:48,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 10:20:48,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:48,050][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:48,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 10:20:48,051][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 10:20:48,051][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 10:20:48,061][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 10:20:48,062][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 10:20:48,062][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 10:20:48,062][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 10:20:48,062][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 10:20:48,063][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 10:20:48,063][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 10:20:48,063][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 10:20:48,063][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 10:20:48,063][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 10:20:48,075][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 10:20:48,075][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 10:20:48,076][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:48,076][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 10:20:48,076][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 10:20:48,077][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 10:20:48,077][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 10:20:48,107][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 10:20:48,107][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 10:20:48,107][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 10:20:48,233][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 10:20:48,236][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 10:20:48,303][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 10:20:48,304][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 11:54:53,411][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 11:54:53,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 11:54:53,412][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 11:54:53,412][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,418][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 11:54:53,419][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,420][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,420][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,421][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,422][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,422][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 11:54:53,423][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:53,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,424][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:53,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:53,731][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:53,731][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 11:54:53,733][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 11:54:53,734][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 11:54:53,735][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 11:54:53,736][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 11:54:53,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:53,736][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:53,736][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:54,166][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:54,167][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 11:54:54,167][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 11:54:54,167][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 11:54:54,168][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 11:54:54,168][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 11:54:54,168][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 11:54:54,169][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 11:54:54,169][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 11:54:54,169][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 11:54:54,170][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 11:54:54,170][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 11:54:54,185][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 11:54:54,186][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 11:54:54,186][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 11:54:54,186][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 11:54:54,186][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 11:54:54,187][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 11:54:54,187][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 11:54:54,187][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 11:54:54,187][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 11:54:54,187][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 11:54:54,202][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 11:54:54,202][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 11:54:54,204][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 11:54:54,204][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 11:54:54,204][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 11:54:54,204][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 11:54:54,204][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 11:54:54,204][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 11:54:54,205][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 11:54:54,205][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 11:54:54,205][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 11:54:54,205][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 11:54:54,205][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 11:54:54,253][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 11:54:54,253][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 11:54:54,253][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 11:54:54,384][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 11:54:54,384][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 11:54:54,385][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 11:54:54,385][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 12:39:23,329][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:39:23,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:23,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:23,329][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:39:23,333][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:39:23,333][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:39:23,333][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:39:23,333][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:39:23,333][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:23,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,336][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,336][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:23,337][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,338][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,338][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,628][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,628][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,629][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,629][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:39:23,630][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:39:23,631][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,631][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,960][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,961][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,961][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:39:23,962][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:39:23,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:39:23,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:39:23,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:39:23,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:23,963][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:39:23,963][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:39:23,964][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:39:23,964][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:39:23,964][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:23,964][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:23,964][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:23,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:23,974][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:39:23,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:23,975][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:39:23,975][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:39:23,975][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:39:23,986][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:39:23,986][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:39:23,987][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:39:23,987][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:39:23,988][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:39:23,988][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:39:23,988][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:39:23,988][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:39:24,019][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:39:24,020][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:24,020][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:39:51,764][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:39:51,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:51,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:51,764][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:51,770][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:39:51,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,772][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:51,772][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:51,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:51,775][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:51,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:52,406][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:52,406][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:52,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:52,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:39:52,409][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:52,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:53,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:53,343][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:53,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:39:53,345][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:39:53,345][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:39:53,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:39:53,346][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:39:53,346][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:53,346][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:39:53,346][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:39:53,347][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:39:53,347][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:53,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:39:53,381][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:39:53,381][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:39:53,381][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:39:53,381][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:39:53,382][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:39:53,382][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:39:53,395][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:39:53,395][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:39:53,397][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:39:53,397][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:39:53,397][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:39:53,397][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:39:53,441][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:39:53,441][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:39:53,441][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:15,633][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:15,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:15,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:15,633][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,636][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:15,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,638][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:15,638][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,639][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:15,640][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,640][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:15,863][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:15,863][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,863][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:40:15,864][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:40:15,865][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:15,865][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:16,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:16,101][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:16,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:40:16,102][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:40:16,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:40:16,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:40:16,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:16,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:16,102][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:40:16,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:16,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:16,111][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:16,112][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:16,112][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:40:16,112][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:40:16,112][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:40:16,113][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:40:16,122][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:40:16,123][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:40:16,123][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:40:16,124][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:16,124][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:40:16,124][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:40:16,124][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:40:16,156][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:40:16,156][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:16,156][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:17,103][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:40:17,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with config.json +[2026-02-19 12:40:17,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:40:17,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from config.json +[2026-02-19 12:40:17,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:40:17,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:40:17,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:40:17,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:17,104][ERROR][superset_tools_app] No environments configured! +[2026-02-19 12:40:18,609][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:18,611][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:40:18,614][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:18,615][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:40:18,638][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 12:40:18,638][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 12:40:18,638][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 12:40:18,638][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 12:40:18,638][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 12:40:18,639][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 12:40:18,639][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 12:40:18,639][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 12:40:18,639][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 12:40:18,640][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 12:40:18,641][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 12:40:18,641][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 12:40:18,642][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 12:40:18,642][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 12:40:18,642][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 12:40:18,643][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:18,644][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,644][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.644897][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,644][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,644][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,645][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:18,648][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:18,650][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,650][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.650772][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,650][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,650][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,650][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:18,654][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:18,656][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,656][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.656223][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,656][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,656][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,656][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:18,660][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:18,662][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,662][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.662390][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,662][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,662][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,662][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:18,666][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:18,668][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,668][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.668246][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,668][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,668][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,668][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:18,672][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:18,673][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,674][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.674129][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,674][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,674][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,674][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:18,678][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:18,680][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:18,680][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:18.680226][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:18,680][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:18,680][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:18,680][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:35,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:35,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:35,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:35,423][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,426][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,427][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,428][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,429][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,429][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,430][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,638][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,638][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,639][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:40:35,639][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:40:35,640][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:40:35,641][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,641][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:35,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,903][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:40:35,903][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:40:35,903][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:40:35,904][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:40:35,904][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:40:35,904][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:35,904][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:40:35,904][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:40:35,905][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:40:35,905][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:40:35,914][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:40:35,915][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:40:35,916][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:40:35,916][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:40:35,916][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:40:35,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:40:35,916][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:40:35,916][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:40:35,917][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:40:35,917][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:40:35,918][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:40:35,935][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:40:35,935][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:40:35,936][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:40:35,936][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:40:35,936][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:40:35,936][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:40:35,936][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:40:35,936][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:40:35,937][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:40:35,937][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:40:35,938][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:35,938][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:40:35,938][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:40:35,938][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:40:35,985][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:40:35,985][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:40:35,985][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:40:37,099][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:40:37,099][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with config.json +[2026-02-19 12:40:37,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:40:37,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from config.json +[2026-02-19 12:40:37,099][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:40:37,100][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:40:37,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:40:37,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:40:37,100][ERROR][superset_tools_app] No environments configured! +[2026-02-19 12:40:38,650][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:38,651][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:40:38,654][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:38,656][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:40:38,681][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 12:40:38,682][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 12:40:38,682][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 12:40:38,682][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 12:40:38,682][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 12:40:38,682][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 12:40:38,683][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 12:40:38,683][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 12:40:38,683][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 12:40:38,683][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 12:40:38,685][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 12:40:38,685][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 12:40:38,685][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 12:40:38,685][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 12:40:38,686][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 12:40:38,687][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:38,689][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,689][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.689622][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,689][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,689][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,689][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:38,693][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:38,694][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,695][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.695113][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,695][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,695][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,695][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:38,698][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:40:38,700][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,700][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.700697][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,700][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,700][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,700][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:40:38,704][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:38,706][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,706][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.706876][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,706][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,706][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,707][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:38,713][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:38,715][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,715][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.715181][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,715][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,715][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,715][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:38,719][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:38,721][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,721][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.721238][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,721][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,721][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,721][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:40:38,725][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:40:38,726][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:40:38,727][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:40:38.727050][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:40:38,727][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:40:38,727][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:40:38,727][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:51:46,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:51:46,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:51:46,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:51:46,548][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:51:46,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,553][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:51:46,553][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,554][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:51:46,554][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:46,555][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,555][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:46,764][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:46,765][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:46,765][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:51:46,765][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:51:46,766][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:51:46,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:51:46,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:46,767][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:46,767][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:47,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:47,007][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:51:47,007][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:51:47,007][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:51:47,007][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:51:47,007][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:51:47,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:51:47,008][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:51:47,008][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:51:47,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:51:47,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:51:47,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:51:47,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:51:47,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:51:47,016][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:51:47,016][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:51:47,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:47,016][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:51:47,017][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:51:47,017][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:51:47,017][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:51:47,017][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:51:47,018][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:51:47,018][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:51:47,018][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:51:47,018][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:51:47,018][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:51:47,028][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:51:47,028][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:51:47,029][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:51:47,029][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:51:47,029][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:51:47,029][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:51:47,029][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:51:47,029][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:51:47,030][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:51:47,030][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:51:47,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:51:47,030][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:51:47,059][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:51:47,059][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:51:47,059][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:51:47,979][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:51:47,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with config.json +[2026-02-19 12:51:47,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:51:47,980][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from config.json +[2026-02-19 12:51:47,980][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:51:47,980][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:51:47,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:51:47,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:51:47,980][ERROR][superset_tools_app] No environments configured! +[2026-02-19 12:51:49,481][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:51:49,483][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:51:49,486][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:51:49,487][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 12:51:49,513][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 12:51:49,513][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 12:51:49,513][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 12:51:49,513][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 12:51:49,513][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 12:51:49,514][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 12:51:49,514][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 12:51:49,514][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 12:51:49,514][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 12:51:49,515][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 12:51:49,516][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 12:51:49,516][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 12:51:49,517][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 12:51:49,517][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 12:51:49,517][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 12:51:49,518][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:51:49,519][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,519][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.519809][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,519][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,519][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,520][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:51:49,523][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:51:49,525][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,525][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.525437][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,525][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,525][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,525][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:51:49,530][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 12:51:49,531][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,531][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.531787][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,531][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,531][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,531][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 12:51:49,535][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:51:49,537][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,537][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.537944][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,538][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,538][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,538][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:51:49,543][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:51:49,544][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,544][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.544345][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,544][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,544][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,544][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:51:49,549][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:51:49,550][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,550][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.550656][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,550][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,550][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,550][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:51:49,554][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 12:51:49,556][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 12:51:49,556][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T09:51:49.556269][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 12:51:49,556][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 12:51:49,556][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 12:51:49,556][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 12:52:13,139][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:52:13,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:13,139][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:13,139][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,142][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,143][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,144][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:13,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:13,145][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,146][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,146][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,376][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,376][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,376][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:52:13,377][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:52:13,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,634][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,634][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:52:13,635][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:52:13,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:52:13,635][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:52:13,635][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:52:13,636][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:13,636][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:52:13,636][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:52:13,637][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:13,637][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:13,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:13,655][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:13,655][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:13,655][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,655][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:13,656][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:13,656][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:52:13,656][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:52:13,656][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:52:13,657][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:52:13,667][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:52:13,667][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:52:13,668][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:52:13,668][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:52:13,668][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:52:13,668][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:52:13,668][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:52:13,668][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:52:13,669][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:52:13,669][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:52:13,669][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:52:13,669][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:52:13,669][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:52:13,669][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:13,670][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:13,670][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:52:13,670][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:52:13,670][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:52:13,670][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:52:13,700][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:52:13,700][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:13,700][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:21,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:52:21,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:21,098][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:21,098][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,104][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,324][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,324][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,324][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,325][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 12:52:21,326][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,326][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:21,569][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,570][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 12:52:21,570][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 12:52:21,570][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 12:52:21,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 12:52:21,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 12:52:21,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:21,571][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 12:52:21,571][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 12:52:21,572][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 12:52:21,572][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 12:52:21,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 12:52:21,591][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 12:52:21,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 12:52:21,592][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 12:52:21,592][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 12:52:21,592][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 12:52:21,603][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 12:52:21,603][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 12:52:21,604][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 12:52:21,604][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 12:52:21,605][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:21,605][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 12:52:21,605][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 12:52:21,605][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 12:52:21,635][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 12:52:21,635][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 12:52:21,635][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 12:52:52,294][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 12:52:52,294][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 12:52:52,294][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 12:52:52,294][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 12:52:52,295][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 12:52:52,295][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 12:52:52,296][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 12:52:52,296][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 12:52:52,296][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 12:52:52,296][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 12:52:52,298][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 12:52:52,298][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 12:52:52,299][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 12:52:52,299][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 12:52:52,299][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 13:13:24,910][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:13:24,910][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:13:24,910][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:13:24,910][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:13:24,911][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:13:24,911][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:13:24,911][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:13:25,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:13:25,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:25,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:25,804][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:13:25,807][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:13:25,807][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:13:25,807][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:25,808][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,809][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,809][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:25,810][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,811][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,811][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:25,812][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:25,812][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:26,058][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:26,058][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:26,058][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:13:26,059][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:13:26,060][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:13:26,060][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:26,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:26,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:26,338][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:26,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:13:26,339][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:13:26,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:13:26,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:13:26,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:13:26,340][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:26,340][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:13:26,340][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:13:26,341][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:26,341][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:13:26,349][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:26,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:26,350][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:13:26,350][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:13:26,350][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:13:26,351][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:13:26,351][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:13:26,351][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:13:26,351][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:13:26,351][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:13:26,370][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:13:26,370][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:13:26,371][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:13:26,371][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:13:26,371][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:13:26,371][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:13:26,371][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:13:26,371][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:13:26,372][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:26,372][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:26,372][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:13:26,373][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:13:26,373][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:13:26,373][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:13:26,412][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:13:26,412][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:26,412][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:13:26,537][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:26,537][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:13:26,538][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:13:26,538][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:13:49,290][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:13:49,290][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:13:49,290][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:13:49,290][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:13:49,291][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:13:49,291][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:13:49,291][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:13:49,932][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:13:49,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:49,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:49,932][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:49,936][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,937][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,937][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,938][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:49,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:49,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:49,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:50,124][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:50,124][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:50,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:13:50,125][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:13:50,126][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:50,126][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:50,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:50,433][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:13:50,434][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:13:50,434][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:13:50,434][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:13:50,434][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:13:50,435][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:50,435][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:13:50,435][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:13:50,435][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:13:50,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:13:50,444][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:13:50,444][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:13:50,444][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:13:50,444][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:13:50,445][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:13:50,445][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:13:50,457][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:13:50,457][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:13:50,458][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:13:50,458][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:13:50,458][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:13:50,458][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:13:50,458][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:13:50,458][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:13:50,459][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:50,459][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:13:50,459][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:13:50,459][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:13:50,494][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:13:50,495][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:13:50,495][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:13:50,612][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:13:50,612][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:13:50,612][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:13:50,612][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:13:50,613][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:13:50,613][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:13:50,613][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:14:23,289][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:14:23,290][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:14:23,290][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:14:23,290][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:14:23,290][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:14:23,291][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:14:23,291][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:14:24,168][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:14:24,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:14:24,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:14:24,168][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:14:24,172][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:14:24,172][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:14:24,172][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:14:24,173][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,174][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,174][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,175][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,176][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,176][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,398][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,398][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:14:24,399][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:14:24,400][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,400][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:14:24,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,698][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,698][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:14:24,699][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:14:24,699][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:14:24,699][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:14:24,699][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:14:24,700][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:14:24,700][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:14:24,700][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:14:24,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:14:24,709][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:14:24,710][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:14:24,710][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:14:24,710][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:14:24,710][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:14:24,721][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:14:24,721][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:14:24,722][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:14:24,722][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:14:24,722][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:14:24,722][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:14:24,763][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:14:24,763][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:14:24,763][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:14:24,906][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:14:24,906][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:14:24,907][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:14:24,907][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:14:24,907][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:14:24,908][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:15:20,836][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:15:20,836][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:15:20,836][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:15:20,837][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:15:20,837][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:15:20,837][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:15:20,837][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:15:21,401][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:15:21,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:15:21,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:15:21,402][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,407][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,408][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,409][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,609][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,609][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:15:21,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:15:21,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:15:21,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,611][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,611][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:15:21,882][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:15:21,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:15:21,882][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:15:21,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:15:21,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:15:21,883][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:15:21,883][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:15:21,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:15:21,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:15:21,892][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:15:21,892][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:15:21,892][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:15:21,892][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:15:21,893][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:15:21,893][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:15:21,902][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:15:21,902][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:15:21,902][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:15:21,903][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:15:21,903][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:15:21,903][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:15:21,903][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:15:21,903][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:15:21,904][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:15:21,904][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:15:21,904][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:15:21,904][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:15:21,939][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:15:21,940][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:15:21,940][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:15:22,086][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:15:22,086][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:15:22,086][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:15:22,086][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:15:22,087][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:15:22,087][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:15:22,087][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:15:30,419][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:15:30,419][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:15:30,419][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:15:30,419][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:15:30,420][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:15:30,420][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:15:30,421][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:15:30,421][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:15:30,421][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:15:30,421][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:15:30,423][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:15:30,423][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:16:39,362][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:16:39,362][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:16:39,363][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:16:39,363][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:16:39,363][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:16:39,363][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:16:39,363][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:16:39,965][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:16:39,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:16:39,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:16:39,965][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:39,968][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,969][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,970][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,970][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:39,971][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:39,971][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:40,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,197][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,197][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:40,198][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:40,198][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:40,198][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:40,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:16:40,200][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:16:40,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:16:40,200][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:16:40,201][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:16:40,202][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:40,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:40,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:40,650][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:40,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:16:40,651][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:16:40,651][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:16:40,651][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:16:40,651][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:16:40,651][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:16:40,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:16:40,652][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:16:40,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:16:40,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:40,653][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:40,653][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:16:40,661][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:40,662][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:16:40,662][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:16:40,662][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:16:40,662][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:16:40,663][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:16:40,663][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:16:40,674][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:16:40,674][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:16:40,675][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:16:40,675][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:16:40,675][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:16:40,675][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:16:40,714][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:16:40,715][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:16:40,715][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:16:40,844][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:16:40,844][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:16:40,845][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:16:40,845][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:16:58,783][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:16:58,784][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:16:58,784][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:16:58,784][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:16:58,784][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:16:58,784][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:16:58,784][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:16:59,463][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:16:59,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:16:59,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:16:59,463][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:16:59,466][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,467][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,468][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,468][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,469][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,470][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,686][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,686][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,687][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,687][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,688][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:16:59,689][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,689][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:16:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:16:59,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:16:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:16:59,994][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:16:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:16:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:16:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:16:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:16:59,996][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:16:59,996][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:16:59,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:00,008][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:00,008][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:17:00,008][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:17:00,009][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:17:00,009][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:17:00,028][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:17:00,029][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:17:00,029][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:17:00,030][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:00,030][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:17:00,030][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:17:00,030][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:17:00,071][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:17:00,071][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:00,071][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:00,201][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:17:00,201][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:17:00,202][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:00,202][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:17:00,203][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:17:00,203][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:17:09,023][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:17:09,023][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:17:09,593][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:17:09,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:09,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:09,593][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:17:09,596][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:09,597][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,598][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,599][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:09,599][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:09,600][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:09,887][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:09,887][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:17:09,888][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:17:09,889][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:09,889][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:10,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:10,207][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:10,207][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:10,208][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:17:10,208][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:17:10,208][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:17:10,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:10,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:10,208][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:17:10,208][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:17:10,209][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:17:10,209][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:10,209][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:10,210][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:17:10,210][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:17:10,210][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:17:10,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:10,211][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:10,211][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:17:10,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:10,221][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:10,221][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:17:10,221][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:17:10,221][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:17:10,222][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:17:10,240][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:17:10,240][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:17:10,240][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:17:10,240][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:17:10,241][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:17:10,241][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:17:10,241][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:17:10,241][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:17:10,241][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:17:10,242][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:10,242][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:17:10,242][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:17:10,242][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:17:10,287][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:17:10,288][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:10,288][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:10,422][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:17:10,422][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:17:10,422][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:17:10,422][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:17:10,422][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:17:10,423][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:17:10,423][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:17:18,842][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:17:18,842][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:17:18,842][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:17:18,842][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:17:18,842][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:17:18,843][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:17:18,843][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:17:19,352][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:17:19,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:19,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:19,352][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:17:19,355][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:19,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,357][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:19,357][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,358][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,358][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,359][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,359][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,550][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,550][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:17:19,551][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:17:19,552][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,552][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:19,823][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,824][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:17:19,824][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:17:19,824][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:17:19,824][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:17:19,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:17:19,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:19,825][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:17:19,825][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:17:19,826][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:17:19,826][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:17:19,835][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:17:19,835][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:17:19,836][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:17:19,836][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:17:19,837][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:17:19,837][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:17:19,837][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:17:19,849][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:17:19,850][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:17:19,850][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:17:19,851][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:19,851][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:17:19,851][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:17:19,851][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:17:19,885][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:17:19,885][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:17:19,885][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:17:20,005][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:17:20,005][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:17:20,005][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:17:20,005][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:17:20,006][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:17:20,006][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:17:20,006][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:17:28,869][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:17:28,869][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:17:28,869][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:17:28,869][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:17:28,870][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:17:28,870][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:17:28,871][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:17:28,871][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:17:28,871][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:17:28,872][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:17:28,873][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:17:28,874][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:18:35,719][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:18:35,719][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:18:35,719][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:18:35,719][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:18:35,720][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:18:35,720][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:18:35,721][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:18:35,721][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:18:35,721][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:18:35,722][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:18:35,724][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:18:35,724][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:22:36,331][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:22:36,331][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:22:39,260][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:22:39,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:39,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:39,260][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:22:39,264][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:22:39,265][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:22:39,265][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,266][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:39,267][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,268][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,269][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,269][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,270][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,270][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,482][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,482][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:22:39,483][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:22:39,484][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,484][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:22:39,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,719][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:22:39,720][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:22:39,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:22:39,720][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:22:39,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:22:39,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:39,721][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:22:39,721][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:22:39,722][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:22:39,722][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:22:39,733][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:22:39,734][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:39,734][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:22:39,734][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:22:39,734][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:22:39,735][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:22:39,735][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:22:39,735][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:22:39,735][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:22:39,735][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:22:39,751][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:22:39,751][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:22:39,752][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:22:39,752][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:22:39,752][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:22:39,752][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:22:39,752][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:22:39,752][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:22:39,753][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:22:39,753][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:22:39,754][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:22:39,754][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:22:39,754][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:22:39,754][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:22:39,797][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:22:39,797][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:22:39,797][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:22:39,947][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:22:39,948][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:22:39,948][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:22:39,948][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:22:39,949][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:22:39,949][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:22:39,949][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:22:39,949][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:22:39,949][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:22:44,546][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-19 13:22:44,548][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:44,548][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-19 13:22:44,548][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 13:22:44,548][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:44,550][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:44,550][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:44,737][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 13:22:44,740][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 13:22:44,740][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 13:22:44,740][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 13:22:44,740][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 13:22:44,743][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 13:22:44,743][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:22:44.743124][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 13:22:44,743][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:22:44,743][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:22:44,743][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 13:22:44,744][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 13:22:44,748][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 13:22:44,749][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-19 13:22:44,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:44,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:44,758][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:22:44,758][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:44,759][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:44,759][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:44,759][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:44,759][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:44,760][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:44,760][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:44,761][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:22:44,761][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:22:44,761][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:22:44,763][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:22:44,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:44,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:44,794][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-19 13:22:44,795][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:44,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:44,795][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:44,795][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:44,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:44,796][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:44,796][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 13:22:44,798][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 13:22:44,799][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-19 13:22:44,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:44,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:45,170][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:22:45,172][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:45,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:45,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:45,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:45,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:45,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:45,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:45,177][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:45,177][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:45,178][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:22:45,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:45,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:45,192][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:22:45,194][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:45,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:45,196][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:45,196][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:45,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:45,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:45,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:22:45,200][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:45,201][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:45,201][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:22:45,201][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:22:45,202][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:22:45,209][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:22:45,209][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:22:45,209][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:22:45,209][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:22:45,209][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:22:45,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:22:45,210][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:22:45,210][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:22:45,210][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:22:45,210][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:22:45,210][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:22:45,210][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:22:45,210][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:22:46,441][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:22:46,441][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:22:46,441][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:22:46,441][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:22:46,442][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:22:47,220][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:22:47,220][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:22:47,221][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,221][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,221][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,221][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,221][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:22:47,221][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:22:47,222][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,222][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,222][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,222][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,224][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:22:47,224][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,230][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,230][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,230][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,230][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,230][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,231][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,231][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,231][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,231][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:22:47,231][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:22:47,231][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:22:47,233][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:22:47,234][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:22:47,234][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:22:47,234][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:22:47,235][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:22:47,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:47,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:47,235][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:47,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:47,236][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:47,236][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:47,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:47,237][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:47,237][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:47,237][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:22:47,237][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:22:47,237][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:22:47,239][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:22:47,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:47,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:47,256][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:22:47,257][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:47,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:47,258][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:47,258][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:47,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:47,259][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:47,259][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:47,260][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:47,260][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:47,260][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:22:47,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:47,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:47,271][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:22:47,271][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:47,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:47,273][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:22:47,273][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:22:47,273][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:47,274][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:47,274][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:22:47,274][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:22:47,279][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:22:47,280][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:22:47,280][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:22:47,280][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:22:47,280][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:22:47,280][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:22:47,280][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:22:47,281][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:22:47,651][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:22:47,651][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:22:47,652][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:22:47,652][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:22:47,652][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:22:47,951][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:22:47,951][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:22:47,951][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:22:47,952][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,952][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,952][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,952][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,952][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:22:47,952][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:22:47,953][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,953][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,953][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,953][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,954][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:22:47,954][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,960][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:22:47,960][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,961][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,961][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,961][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,961][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,962][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,962][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,962][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:22:47,962][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:22:47,962][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:22:47,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:22:47,964][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:22:47,966][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:22:47,966][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:22:47,967][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:22:47,969][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:47,969][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:52,255][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:22:52,256][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:52,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:52,256][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:52,256][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:52,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:52,257][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:52,258][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:52,258][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:22:52,258][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:22:52,258][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:22:52,259][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:22:52,260][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:52,260][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:52,273][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:22:52,274][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:52,275][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:52,275][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:52,275][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:52,275][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:52,276][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:52,276][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:52,277][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:52,278][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:22:52,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:52,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:52,278][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:52,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:52,278][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:52,278][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:22:52,280][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:52,280][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:52,288][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:22:52,289][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:52,290][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:52,290][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:52,290][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:52,290][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:52,291][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:52,291][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:52,292][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 13:22:52,293][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:52,293][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:22:52,294][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:22:52,294][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:22:52,300][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:22:52,300][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:22:52,300][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 13:22:52,300][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:22:52,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:22:52,300][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:22:52,301][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:22:52,301][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:22:52,761][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:22:52,761][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:22:52,761][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:22:52,761][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:22:52,761][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:22:53,077][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 13:22:53,078][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:22:53,078][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:22:53,078][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 13:22:53,078][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:22:53,079][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:22:53,079][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 13:22:53,079][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 13:22:53,079][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 13:22:53,079][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 13:22:53,079][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 13:22:53,080][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 13:22:53,081][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:22:53,081][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:22:53,081][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-19 13:22:53,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:53,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:57,175][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:22:57,175][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:57,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:57,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:57,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:57,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:57,177][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:57,177][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:57,177][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:22:57,177][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:22:57,177][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:22:57,178][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:22:57,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:57,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:57,193][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-19 13:22:57,194][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 13:22:57,195][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:22:57,195][DEBUG][superset_tools_app] [decode_token][Entry] +[2026-02-19 13:22:57,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:22:57,195][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:57,196][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:57,196][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:57,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:57,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:57,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:57,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:57,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:57,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:57,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:22:57,199][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:22:57,199][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-19 13:22:57,201][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:57,202][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 13:22:57,202][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:22:57,203][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 13:22:57,203][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 13:22:57,203][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 13:22:57,203][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 13:22:57,204][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 13:22:57,204][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:57,204][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-19 13:22:57,206][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:57,206][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-19 13:22:58,713][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 13:22:58,714][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:22:58,714][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:58,714][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:58,714][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:58,714][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:58,715][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:58,715][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:58,717][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:58,717][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 13:22:58,718][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:22:58,718][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 13:22:58,718][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 13:22:58,718][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 13:22:58,718][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 13:22:58,718][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 13:22:58,719][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 13:22:58,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:58,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:58,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:22:58,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:58,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:58,723][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:58,723][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:58,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:58,725][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:58,726][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 13:22:58,726][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:58,727][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:58,727][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 13:22:58,728][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 13:22:58,729][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 13:22:58,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:58,730][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:22:58,732][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-19 13:22:58,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:22:58,734][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:22:58,734][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:22:58,734][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:22:58,734][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:22:58,736][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:22:58,736][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:58,738][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:58,739][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: SS1 +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:validate_path][Entry] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Coherence:OK] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Action] [StoragePlugin:validate_path][Exit] +[2026-02-19 13:22:58,739][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups/SS1 +[2026-02-19 13:22:58,740][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 13:22:58,740][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 13:22:58,740][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 13:22:58,740][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 13:22:58,741][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-19 13:22:58,742][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:22:58,743][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:32:26,783][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:32:26,783][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:26,783][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:26,783][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,786][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,787][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,787][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,788][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:26,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,789][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:26,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:26,996][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:26,996][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:32:26,997][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:32:26,998][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:26,998][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:27,224][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:27,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:32:27,225][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:32:27,225][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:32:27,225][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:32:27,225][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:32:27,226][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:27,226][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:32:27,226][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:27,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:27,235][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:27,236][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:27,236][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:27,236][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:32:27,237][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:32:27,237][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:32:27,247][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:32:27,247][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:32:27,248][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:32:27,248][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:32:27,248][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:32:27,248][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:32:27,275][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:32:27,275][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:27,275][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:32:40,212][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:32:40,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:40,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:40,213][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:32:40,215][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:32:40,215][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:32:40,215][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:32:40,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,217][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,217][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,218][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,219][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,463][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,463][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,464][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:32:40,464][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:32:40,465][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,465][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,466][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:40,706][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,707][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,707][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:32:40,708][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:32:40,708][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:32:40,708][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:32:40,708][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:40,708][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,708][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:32:40,709][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:32:40,709][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:32:40,720][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:32:40,721][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:32:40,721][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:32:40,721][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:32:40,721][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:32:40,722][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:32:40,722][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:32:40,722][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:32:40,722][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:32:40,722][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:32:40,733][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:32:40,733][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:32:40,734][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:32:40,734][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:32:40,734][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:32:40,734][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:32:40,734][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:32:40,734][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:32:40,735][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:32:40,735][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:32:40,735][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:32:40,735][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:32:40,768][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:32:40,768][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:32:40,768][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:33:00,164][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:33:00,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:33:00,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:33:00,164][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:33:00,167][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,169][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,170][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,171][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:33:00,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,172][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,172][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,378][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,378][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,379][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:33:00,380][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,380][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,615][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,616][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:33:00,616][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:33:00,616][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:33:00,616][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:33:00,616][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:33:00,617][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:33:00,617][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:33:00,617][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:33:00,618][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:33:00,618][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:33:00,618][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:33:00,618][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:33:00,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:33:00,618][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:33:00,625][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:33:00,626][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:33:00,626][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:33:00,626][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:33:00,626][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:33:00,627][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:33:00,627][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:33:00,637][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:33:00,637][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:33:00,638][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:33:00,638][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:33:00,638][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:33:00,638][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:33:00,665][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:33:00,666][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:33:00,666][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:33:58,638][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:33:58,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:33:58,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:33:58,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:33:58,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:33:58,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:33:58,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:33:58,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:33:58,641][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:33:58,641][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:33:58,641][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:33:58,642][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:33:58,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:33:58,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:33:58,656][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:33:58,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:33:58,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:33:58,657][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:33:58,657][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:33:58,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:33:58,658][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:33:58,658][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:33:58,659][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:33:58,659][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:33:58,659][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:33:58,659][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:33:58,660][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:33:58,660][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:33:58,660][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:33:58,660][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:33:58,660][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:33:58,661][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:33:58,667][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:33:58,668][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:33:58,668][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:33:58,669][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:33:58,669][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:33:58,669][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:33:58,670][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:33:58,670][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:33:58,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:33:58,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:33:58,672][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 13:33:58,673][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:33:58,673][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:33:58,679][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:33:58,679][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:33:58,679][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 13:33:58,679][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:33:58,679][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:33:58,680][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:33:58,680][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:33:58,680][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:33:58,680][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:33:59,828][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:33:59,828][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:33:59,828][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:33:59,828][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:33:59,828][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:33:59,981][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 13:33:59,981][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 13:33:59,981][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 13:33:59,982][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 13:33:59,982][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 13:33:59,983][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 13:33:59,984][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:33:59,984][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:33:59,984][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-19 13:33:59,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:33:59,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:34:11,115][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-19 13:34:11,116][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:34:11,117][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:34:11,117][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:34:11,117][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:34:11,117][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:34:11,118][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:34:11,119][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_settings][Entry] +[2026-02-19 13:34:11,120][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_config][Entry] +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:34:11,120][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:34:11,122][INFO][superset_tools_app] Response status: 200 for /api/settings +[2026-02-19 13:34:11,123][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:34:11,124][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:34:11,153][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:34:11,155][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:34:11,155][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:34:11,155][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:34:11,155][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:34:11,155][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:34:11,156][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:34:11,156][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:34:11,157][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:34:11,157][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:34:11,157][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:34:11,159][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:34:11,160][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:34:11,161][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:34:11,179][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated +[2026-02-19 13:34:11,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 13:34:11,180][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:34:11,180][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:34:11,181][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:34:11,181][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:34:11,183][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:34:11,183][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:34:11,185][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] +[2026-02-19 13:34:11,185][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 13:34:11,185][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 13:34:11,185][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:34:11,185][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:34:11,185][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 13:34:11,187][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 13:34:11,188][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 13:34:11,188][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 13:34:11,188][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 13:34:11,189][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated +[2026-02-19 13:34:11,190][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:34:11,190][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:34:53,436][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:34:53,437][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:34:53,437][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:34:53,437][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,442][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:53,443][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,444][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:53,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:53,445][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:34:53,446][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:53,447][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:53,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:53,776][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:53,776][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:34:53,776][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:34:53,777][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:34:53,778][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:53,778][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:54,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:54,041][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:54,041][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:34:54,042][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:34:54,042][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:34:54,042][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:34:54,042][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:34:54,042][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:34:54,042][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:34:54,043][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:34:54,043][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:34:54,055][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:34:54,056][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:34:54,056][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:34:54,056][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:34:54,056][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:34:54,068][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:34:54,068][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:34:54,069][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:34:54,070][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:34:54,070][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:34:54,070][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:34:54,070][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:34:54,100][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:34:54,100][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:34:54,100][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:01,876][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:01,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:01,876][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:01,876][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,880][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,881][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:01,881][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:01,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:01,883][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:01,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:02,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:02,089][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:02,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:35:02,090][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:02,091][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:02,091][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:02,321][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:02,322][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:35:02,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:35:02,323][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:35:02,323][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:35:02,323][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:35:02,323][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:35:02,323][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:02,324][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:02,324][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:02,324][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:35:02,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:02,325][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:02,325][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:02,334][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:02,335][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:02,335][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:35:02,335][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:35:02,335][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:35:02,336][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:35:02,336][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:35:02,345][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:35:02,345][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:35:02,346][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:35:02,346][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:35:02,346][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:35:02,346][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:35:02,346][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:35:02,346][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:35:02,347][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:02,347][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:35:02,347][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:35:02,347][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:35:02,376][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:35:02,376][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:02,377][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:09,502][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:09,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:09,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:09,502][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,505][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,506][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,507][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,507][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:09,508][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,509][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:09,509][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,510][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,510][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,730][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,730][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,730][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:35:09,731][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:09,732][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,732][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,979][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:09,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:35:09,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:35:09,981][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:35:09,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:35:09,981][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:35:09,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:35:09,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:09,982][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:09,982][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:09,982][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:35:09,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:09,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:09,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:10,000][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:10,001][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:35:10,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:10,002][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:35:10,002][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:35:10,002][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:35:10,013][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:35:10,013][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:35:10,014][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:10,014][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:10,015][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:35:10,015][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:35:10,015][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:35:10,015][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:35:10,048][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:35:10,048][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:10,048][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:32,301][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:32,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:32,301][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:32,301][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:35:32,305][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,306][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,306][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:35:32,307][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,308][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,308][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,309][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,310][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:32,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:32,311][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,311][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:32,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:32,667][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:32,667][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:32,668][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:32,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:32,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:33,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:33,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:33,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:35:33,102][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:35:33,102][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:35:33,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:35:33,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:35:33,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:33,103][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:33,103][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:33,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:33,104][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:33,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:33,117][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:33,117][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:35:33,117][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:35:33,118][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:35:33,118][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:35:33,118][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:35:33,118][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:35:33,118][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:35:33,118][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:35:33,119][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:35:33,119][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:35:33,139][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:35:33,140][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:35:33,140][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:35:33,142][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:35:33,142][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:35:33,143][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:33,143][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:35:33,143][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:35:33,143][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:35:33,214][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:35:33,215][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:33,215][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:46,476][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:46,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:46,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:46,476][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:35:46,479][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:35:46,479][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:35:46,479][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:35:46,479][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,481][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,481][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,482][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,482][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,483][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,483][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,697][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,697][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:35:46,697][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:35:46,698][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:35:46,699][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,699][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,938][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:35:46,938][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:35:46,938][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:35:46,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:35:46,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:35:46,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:46,939][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:35:46,939][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:35:46,940][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:35:46,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:35:46,950][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:35:46,951][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:35:46,951][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:35:46,951][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:35:46,951][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:35:46,952][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:35:46,952][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:35:46,962][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:35:46,962][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:35:46,962][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:35:46,962][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:35:46,963][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:35:46,963][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:35:46,963][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:35:46,963][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:35:46,964][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:35:46,964][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:35:46,964][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:35:46,964][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:35:46,994][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:35:46,994][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:35:46,994][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:38,652][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:36:38,652][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:36:38,653][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:36:38,653][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:36:38,653][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:36:38,653][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:36:38,653][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:36:39,346][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:36:39,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:39,346][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:39,346][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,349][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:39,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:39,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,352][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,352][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,526][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,527][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:36:39,528][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,528][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,788][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:36:39,789][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:36:39,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:36:39,789][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:36:39,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:36:39,790][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:39,790][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:36:39,790][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:39,790][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:39,798][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:36:39,798][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:39,799][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:36:39,799][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:36:39,799][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:36:39,811][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:36:39,811][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:36:39,812][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:36:39,812][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:36:39,812][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:39,813][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:36:39,813][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:36:39,813][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:36:39,843][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:36:39,843][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:39,843][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:36:39,956][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:36:39,956][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:36:39,957][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:36:39,957][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:36:49,767][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:36:49,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:49,767][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:49,767][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:36:49,770][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:36:49,770][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:36:49,770][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:36:49,770][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,771][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,772][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,772][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,773][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:49,773][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:49,774][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,774][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:49,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:49,981][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,981][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:49,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:36:49,983][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:49,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:50,228][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:50,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:36:50,229][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:50,229][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:36:50,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:36:50,230][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:36:50,230][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:50,230][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:36:50,230][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:36:50,231][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:36:50,231][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:36:50,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:36:50,238][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:36:50,238][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:36:50,238][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:36:50,239][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:36:50,239][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:36:50,239][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:36:50,239][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:36:50,240][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:36:50,250][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:36:50,250][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:36:50,251][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:36:50,251][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:36:50,251][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:36:50,251][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:36:50,281][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:36:50,281][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:36:50,281][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:06,824][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:37:06,824][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:37:06,824][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:37:06,824][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:37:06,825][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:37:06,825][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:37:06,825][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:37:07,601][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:07,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:07,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:07,601][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,604][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:07,605][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,606][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:07,606][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,607][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:07,607][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:37:07,607][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,608][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,608][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:07,829][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:07,829][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,829][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:07,830][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:07,831][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:07,831][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:08,072][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:08,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:37:08,073][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:37:08,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:37:08,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:37:08,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:08,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:08,074][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:08,074][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:08,074][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:08,081][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:08,082][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:08,082][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:37:08,082][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:37:08,083][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:37:08,083][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:37:08,094][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:37:08,094][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:37:08,095][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:08,095][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:37:08,095][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:37:08,095][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:37:08,132][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:37:08,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:08,132][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:08,273][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:37:08,273][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:37:08,274][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:37:08,274][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:37:08,274][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:37:08,275][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:37:08,275][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:37:08,276][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:37:13,753][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:13,753][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:13,753][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:13,753][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,756][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,757][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,757][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,758][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:13,759][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:13,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:13,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:37:13,995][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:37:13,996][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:13,997][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:13,997][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:14,257][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:14,258][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:37:14,258][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:37:14,259][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:37:14,259][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:37:14,259][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:37:14,259][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:37:14,259][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:14,260][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:14,260][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:37:14,260][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:14,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:14,261][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:14,270][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:14,271][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:14,271][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:37:14,271][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:37:14,272][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:37:14,272][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:37:14,283][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:37:14,284][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:37:14,284][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:37:14,285][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:37:14,285][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:37:14,285][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:37:14,285][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:37:14,285][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:14,286][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:14,286][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:14,286][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:37:14,286][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:37:14,286][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:37:14,286][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:37:14,319][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:37:14,319][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:14,319][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:46,267][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:37:46,267][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:37:46,267][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:37:46,267][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:37:46,267][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:37:46,268][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:37:46,268][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:37:47,084][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:47,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:47,084][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:47,084][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,090][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,092][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,092][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,093][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,093][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,094][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,095][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,095][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,372][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,372][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,372][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:37:47,373][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:47,374][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,374][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:47,621][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,622][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:37:47,622][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:37:47,622][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:37:47,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:37:47,623][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:37:47,623][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:47,623][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:47,623][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:47,624][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:47,624][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:47,633][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:47,634][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:47,634][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:37:47,634][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:37:47,634][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:37:47,635][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:37:47,635][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:37:47,635][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:37:47,645][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:37:47,646][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:37:47,646][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:37:47,647][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:47,647][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:37:47,647][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:37:47,647][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:37:47,682][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:37:47,682][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:47,682][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:47,807][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:37:47,808][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:47,808][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:37:47,808][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:37:47,809][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:37:58,733][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:37:58,733][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:37:58,733][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:37:58,733][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:37:58,734][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:37:58,734][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:37:58,734][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:37:59,424][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:59,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:59,424][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:59,424][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:37:59,429][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:37:59,429][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:37:59,429][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,430][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,431][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,431][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,432][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,432][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,433][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,433][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,684][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,684][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,684][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:59,685][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:37:59,686][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,686][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,687][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:37:59,993][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:37:59,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:37:59,994][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:37:59,994][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:37:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:37:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:37:59,995][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:37:59,995][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:37:59,995][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:37:59,996][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:37:59,996][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:00,005][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:00,006][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:00,006][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:00,007][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:38:00,007][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:38:00,007][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:38:00,008][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:38:00,023][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:38:00,023][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:38:00,024][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:00,024][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:38:00,024][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:38:00,024][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:38:00,067][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:38:00,067][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:00,067][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:00,210][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:38:00,210][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:38:00,210][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:38:00,210][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:38:00,210][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:38:00,210][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:38:00,211][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:38:00,211][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:38:05,977][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:05,977][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:05,977][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:05,977][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:38:05,981][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:38:05,981][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:38:05,981][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:05,982][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,983][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:05,983][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:05,984][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,985][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:05,985][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:05,986][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:05,986][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:06,218][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:06,218][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:06,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:06,220][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:06,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:06,487][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:06,488][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:38:06,488][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:06,488][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:38:06,488][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:38:06,489][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:38:06,489][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:06,489][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:06,489][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:06,490][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:06,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:06,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:06,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:06,501][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:06,502][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:38:06,502][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:38:06,502][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:38:06,514][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:38:06,514][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:38:06,515][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:38:06,515][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:38:06,515][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:38:06,515][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:38:06,515][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:06,515][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:06,516][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:06,516][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:38:06,516][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:38:06,516][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:38:06,516][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:38:06,551][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:38:06,551][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:06,551][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:32,935][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:32,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:32,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:32,936][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:32,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:32,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,941][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:32,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,942][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:32,943][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:32,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:33,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:33,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:33,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:38:33,179][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:33,180][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:33,180][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:33,462][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,462][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,462][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:33,463][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:33,463][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:38:33,464][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:38:33,464][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:38:33,464][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:38:33,465][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:38:33,465][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:33,465][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:38:33,465][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:33,466][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:33,466][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:33,477][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:33,478][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:33,478][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:38:33,478][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:38:33,478][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:38:33,479][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:38:33,479][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:38:33,491][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:38:33,491][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:38:33,492][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:38:33,492][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:38:33,492][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:38:33,492][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:38:33,492][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:38:33,492][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:38:33,493][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:33,493][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:38:33,493][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:38:33,493][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:38:33,528][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:38:33,528][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:33,528][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:56,140][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:38:56,140][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:38:56,140][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:38:56,141][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:38:56,141][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:38:56,141][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:38:56,141][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:38:56,924][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:56,924][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:56,924][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:56,924][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:56,932][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:56,933][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,934][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:56,935][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,936][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:56,936][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:56,937][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:56,938][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:56,938][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:57,161][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:57,162][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:57,162][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:38:57,162][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:38:57,163][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:38:57,164][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:38:57,164][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:57,164][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:57,164][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:57,425][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,425][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:57,426][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:57,426][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:38:57,427][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:38:57,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:38:57,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:38:57,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:57,427][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:57,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:38:57,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:38:57,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:38:57,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:38:57,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:38:57,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:38:57,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:38:57,436][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:38:57,436][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:38:57,436][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:38:57,436][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:38:57,437][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:38:57,437][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:38:57,437][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:38:57,437][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:38:57,437][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:38:57,448][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:38:57,448][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:38:57,449][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:57,449][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:38:57,449][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:38:57,449][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:38:57,484][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:38:57,484][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:38:57,484][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:38:57,604][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:38:57,604][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:38:57,605][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:38:57,605][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:38:57,606][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:39:04,267][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:04,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:04,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:04,268][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,271][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,272][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,273][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,273][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,274][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,274][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,275][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,275][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,512][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,512][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,512][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:39:04,513][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:04,514][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,514][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:04,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,789][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,789][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:39:04,790][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:39:04,790][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:39:04,790][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:39:04,791][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:39:04,791][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:04,791][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:39:04,791][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:04,792][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:04,792][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:04,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:04,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:04,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:04,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:04,803][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:04,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:04,804][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:39:04,804][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:39:04,804][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:39:04,817][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:39:04,818][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:39:04,818][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:39:04,819][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:39:04,819][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:39:04,819][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:39:04,819][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:39:04,819][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:04,820][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:04,820][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:04,820][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:39:04,820][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:39:04,820][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:39:04,820][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:39:04,853][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:39:04,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:04,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:04,993][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:04,994][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:05,065][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:05,066][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:05,071][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:05,072][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:05,077][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:39:05,079][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:39:05,084][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:39:05,085][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:39:05,089][INFO][superset_tools_app] Incoming request: POST /api/datasets/generate-docs +[2026-02-19 13:39:05,091][INFO][superset_tools_app] Response status: 401 for /api/datasets/generate-docs +[2026-02-19 13:39:16,448][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:39:16,448][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:39:16,448][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:39:16,448][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:39:16,448][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:39:16,449][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:39:16,449][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:39:17,034][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:17,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:17,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:17,034][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:39:17,037][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:39:17,037][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:39:17,037][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:39:17,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,038][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,039][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:17,039][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,040][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,040][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,040][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,041][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,284][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,284][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,284][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:39:17,285][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,285][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,285][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:39:17,286][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:39:17,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:17,288][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,288][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:17,592][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,593][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:39:17,593][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:39:17,593][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:39:17,593][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:39:17,594][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:39:17,594][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:17,594][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:17,594][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:17,595][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:17,595][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:17,605][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:17,606][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:17,606][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:39:17,606][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:39:17,606][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:39:17,607][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:39:17,607][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:39:17,621][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:39:17,621][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:39:17,623][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:17,623][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:17,624][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:39:17,624][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:39:17,624][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:39:17,624][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:39:17,684][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:39:17,684][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:17,684][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:39:17,823][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:17,823][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:39:17,824][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:39:17,824][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:39:25,543][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:25,543][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:25,543][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:25,543][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,546][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,547][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,548][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,548][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,549][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,550][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:25,550][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:25,551][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,551][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:25,881][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:25,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:25,882][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:39:25,882][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:25,883][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:25,883][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:26,181][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:26,181][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:26,181][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:26,182][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:26,182][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:39:26,183][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:39:26,183][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:39:26,183][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:39:26,183][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:39:26,184][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:26,184][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:26,184][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:26,185][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:39:26,185][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:26,185][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:26,185][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:26,192][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:26,193][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:26,193][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:26,194][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:39:26,194][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:39:26,194][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:39:26,207][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:39:26,207][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:39:26,208][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:26,208][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:26,208][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:39:26,209][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:39:26,209][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:39:26,209][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:39:26,243][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:39:26,244][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:26,244][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:26,387][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:26,388][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:26,468][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:26,469][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:26,473][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:39:26,474][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:39:26,478][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:39:26,480][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:39:26,484][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:39:26,486][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:39:26,490][INFO][superset_tools_app] Incoming request: POST /api/datasets/generate-docs +[2026-02-19 13:39:26,491][INFO][superset_tools_app] Response status: 401 for /api/datasets/generate-docs +[2026-02-19 13:39:37,735][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:37,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:37,735][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:37,735][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:39:37,738][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:39:37,738][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:39:37,738][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:39:37,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:39:37,738][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:37,739][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,740][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,740][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,741][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,741][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:37,742][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,742][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:37,990][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:37,990][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:37,991][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:39:37,991][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:39:37,992][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:39:37,993][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:39:37,993][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:39:37,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:39:37,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:37,993][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:37,993][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:38,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:38,267][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:39:38,267][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:38,267][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:39:38,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:39:38,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:39:38,268][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:38,268][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:39:38,268][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:39:38,269][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:39:38,269][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:39:38,280][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:39:38,281][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:39:38,281][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:39:38,281][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:39:38,281][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:39:38,282][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:39:38,294][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:39:38,294][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:39:38,295][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:39:38,295][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:39:38,295][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:38,296][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:39:38,296][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:39:38,296][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:39:38,330][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:39:38,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:39:38,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:39:38,466][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:39:38,468][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:39:38,544][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:39:38,546][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:39:38,551][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:39:38,552][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:39:38,556][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:39:38,557][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:39:38,562][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:39:38,563][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:39:38,568][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:39:38,570][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:39:38,577][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 13:39:38,579][INFO][superset_tools_app] Response status: 401 for /api/dashboards/backup +[2026-02-19 13:39:38,585][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-19 13:39:38,586][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-19 13:39:38,586][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-19 13:39:38,586][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-19 13:39:38,586][INFO][superset_tools_app] Response status: 401 for /api/dashboards/db-mappings +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:40:28,579][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:40:28,579][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:40:29,165][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:40:29,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:40:29,165][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:40:29,165][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,169][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,170][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,171][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:40:29,171][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,172][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:40:29,172][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,173][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,173][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,420][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,420][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,421][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:40:29,421][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:40:29,422][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:40:29,423][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:40:29,423][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:40:29,423][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,423][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,423][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,663][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,663][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:40:29,664][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:40:29,664][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:40:29,664][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:40:29,664][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:40:29,665][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:40:29,665][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:40:29,665][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:40:29,666][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:40:29,666][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:40:29,667][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:40:29,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:40:29,667][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:40:29,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:40:29,675][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:40:29,675][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:40:29,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,675][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:40:29,676][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:40:29,676][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:40:29,677][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:40:29,677][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:40:29,677][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:40:29,695][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:40:29,696][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:40:29,696][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:40:29,698][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:40:29,698][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:40:29,698][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:40:29,698][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:40:29,742][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:40:29,743][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:40:29,743][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:40:29,867][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:40:29,867][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:40:29,867][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:40:29,868][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:40:29,868][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:40:29,868][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:40:29,868][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:41:08,310][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:41:08,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:41:08,310][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:41:08,310][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:41:08,313][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:41:08,313][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:41:08,314][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,316][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,317][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:41:08,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,318][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,318][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,585][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,585][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,585][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,586][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:41:08,587][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,587][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:41:08,919][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,920][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,920][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:41:08,921][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:41:08,921][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:41:08,921][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:41:08,921][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:41:08,922][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:41:08,922][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:41:08,922][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:41:08,923][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:41:08,923][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:41:08,933][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:41:08,934][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:41:08,934][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:41:08,934][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:41:08,934][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:41:08,935][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:41:08,935][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:41:08,935][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:41:08,935][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:41:08,935][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:41:08,946][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:41:08,946][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:41:08,947][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:41:08,947][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:41:08,947][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:41:08,947][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:08,947][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:08,948][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:08,948][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:08,948][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:08,948][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:08,948][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:08,948][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:41:08,981][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:41:08,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:08,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:09,143][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:41:09,145][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:41:09,222][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:41:09,223][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:41:09,228][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:41:09,229][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:41:09,234][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:41:09,235][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:41:09,240][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:41:09,242][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:41:09,247][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:41:09,248][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:41:09,256][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 13:41:09,258][INFO][superset_tools_app] Response status: 401 for /api/dashboards/backup +[2026-02-19 13:41:09,263][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-19 13:41:09,265][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-19 13:41:09,265][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-19 13:41:09,265][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-19 13:41:09,265][INFO][superset_tools_app] Response status: 401 for /api/dashboards/db-mappings +[2026-02-19 13:41:09,270][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:41:09,271][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:41:09,276][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:41:09,277][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:41:09,281][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:41:09,282][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:41:09,287][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:41:09,288][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:41:09,292][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:41:09,293][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:41:09,299][INFO][superset_tools_app] Incoming request: POST /api/datasets/generate-docs +[2026-02-19 13:41:09,301][INFO][superset_tools_app] Response status: 401 for /api/datasets/generate-docs +[2026-02-19 13:41:09,305][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,305][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,305][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,305][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:09,305][DEBUG][superset_tools_app] [get_dashboards_with_status][Entry] env=prod +[2026-02-19 13:41:09,306][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 2 dashboards with status +[2026-02-19 13:41:09,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:41:09,306][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:09,307][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,307][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:09,308][DEBUG][superset_tools_app] [get_datasets_with_status][Entry] env=prod +[2026-02-19 13:41:09,308][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 2 datasets with status +[2026-02-19 13:41:09,308][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 13:41:09,308][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:09,309][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [get_activity_summary][Entry] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Coherence:OK] +[2026-02-19 13:41:09,309][DEBUG][superset_tools_app] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Exit] +[2026-02-19 13:41:09,310][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,310][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,310][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,310][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:09,311][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,311][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:41:09,312][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:41:09,312][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:12,711][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:42:12,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:42:12,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:42:12,711][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:12,715][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:12,716][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:42:12,717][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,718][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:42:12,718][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,719][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:12,719][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:12,720][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:12,720][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:12,999][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:12,999][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:42:12,999][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:13,000][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:13,000][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:42:13,001][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:42:13,002][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:42:13,003][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:13,003][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:13,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:13,400][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:13,401][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:13,401][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:42:13,402][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:42:13,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:42:13,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:42:13,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:42:13,403][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:42:13,403][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:42:13,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:42:13,404][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:42:13,404][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:42:13,414][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:42:13,415][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:42:13,415][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:42:13,415][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:42:13,415][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:42:13,416][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:42:13,416][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:42:13,427][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:42:13,427][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:42:13,428][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:42:13,428][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:42:13,428][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:42:13,428][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:13,428][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:13,428][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:13,429][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:13,429][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:13,429][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:13,429][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:13,429][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:42:13,462][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:42:13,462][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:13,462][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:13,779][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:42:13,780][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:42:13,780][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:42:14,133][DEBUG][superset_tools_app] [AuthService.authenticate_user][Entry] +[2026-02-19 13:42:14,133][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:42:14,134][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:42:14,134][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:42:14,308][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 13:42:14,311][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 13:42:14,311][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 13:42:14,311][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 13:42:14,311][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 13:42:14,313][DEBUG][superset_tools_app] [AuthService.authenticate_user][Entry] +[2026-02-19 13:42:14,314][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:42:14,314][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:42:14,314][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:42:14,491][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthService.authenticate_user][Entry] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 13:42:14,492][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 13:42:14,671][DEBUG][superset_tools_app] [AuthService.create_session][Entry] +[2026-02-19 13:42:14,674][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 13:42:14,678][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 13:42:14,678][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 13:42:14,678][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 13:42:14,678][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 13:42:14,683][DEBUG][superset_tools_app] [AuthRepository.get_role_by_name][Entry] +[2026-02-19 13:42:14,683][DEBUG][superset_tools_app] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Coherence:OK] +[2026-02-19 13:42:14,684][DEBUG][superset_tools_app] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Action] [AuthRepository.get_role_by_name][Exit] +[2026-02-19 13:42:14,865][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:42:14,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:42:14,866][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:42:14,878][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,881][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,895][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,896][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,908][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:42:14,908][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:42:14,908][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:42:14,909][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:42:14,910][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:42:14,910][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:42:14,911][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:42:14,911][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:42:14,911][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:42:14,912][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:42:14,915][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:42:14,915][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:42:14,916][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 13:42:14,916][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 13:42:14,916][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 13:42:14,919][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,920][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,921][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.921205][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,921][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,921][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,921][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 13:42:14,926][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,929][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,929][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.929315][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,929][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,929][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,929][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 13:42:14,932][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,934][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,934][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.934205][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,934][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,934][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,934][INFO][superset_tools_app] Response status: 403 for /api/dashboards +[2026-02-19 13:42:14,939][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:14,941][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,941][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.941335][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,941][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,941][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,941][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 13:42:14,944][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:14,946][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,946][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.946581][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,946][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,946][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,946][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 13:42:14,949][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:14,951][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,951][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.951201][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,951][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,951][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,951][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 13:42:14,954][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:14,957][DEBUG][superset_tools_app] [log_security_event][Entry] PERMISSION_DENIED:testadmin +[2026-02-19 13:42:14,958][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T10:42:14.958123][PERMISSION_DENIED] User: testadmin Details: {'resource': 'plugin:migration', 'action': 'READ'} +[2026-02-19 13:42:14,958][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 13:42:14,958][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 13:42:14,958][INFO][superset_tools_app] Response status: 403 for /api/datasets +[2026-02-19 13:42:14,971][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,972][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,975][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,976][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,979][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,980][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,982][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:42:14,983][INFO][superset_tools_app] Response status: 401 for /api/dashboards +[2026-02-19 13:42:14,985][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:42:14,987][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:42:14,989][INFO][superset_tools_app] Incoming request: POST /api/dashboards/migrate +[2026-02-19 13:42:14,990][INFO][superset_tools_app] Response status: 401 for /api/dashboards/migrate +[2026-02-19 13:42:14,993][INFO][superset_tools_app] Incoming request: POST /api/dashboards/backup +[2026-02-19 13:42:14,994][INFO][superset_tools_app] Response status: 401 for /api/dashboards/backup +[2026-02-19 13:42:14,996][INFO][superset_tools_app] Incoming request: GET /api/dashboards/db-mappings +[2026-02-19 13:42:14,997][DEBUG][superset_tools_app] [MappingService.__init__][Entry] +[2026-02-19 13:42:14,997][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Coherence:OK] +[2026-02-19 13:42:14,997][DEBUG][superset_tools_app] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Action] [MappingService.__init__][Exit] +[2026-02-19 13:42:14,998][INFO][superset_tools_app] Response status: 401 for /api/dashboards/db-mappings +[2026-02-19 13:42:15,000][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:15,001][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:42:15,003][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:15,004][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:42:15,007][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:42:15,008][INFO][superset_tools_app] Response status: 401 for /api/datasets +[2026-02-19 13:42:15,015][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:42:15,016][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:42:15,019][INFO][superset_tools_app] Incoming request: POST /api/datasets/map-columns +[2026-02-19 13:42:15,019][INFO][superset_tools_app] Response status: 401 for /api/datasets/map-columns +[2026-02-19 13:42:15,022][INFO][superset_tools_app] Incoming request: POST /api/datasets/generate-docs +[2026-02-19 13:42:15,023][INFO][superset_tools_app] Response status: 401 for /api/datasets/generate-docs +[2026-02-19 13:42:15,025][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,025][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,026][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,026][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:15,026][DEBUG][superset_tools_app] [get_dashboards_with_status][Entry] env=prod +[2026-02-19 13:42:15,027][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 2 dashboards with status +[2026-02-19 13:42:15,028][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:42:15,028][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:15,031][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:15,032][DEBUG][superset_tools_app] [get_datasets_with_status][Entry] env=prod +[2026-02-19 13:42:15,032][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 2 datasets with status +[2026-02-19 13:42:15,032][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 13:42:15,032][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:15,033][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [get_activity_summary][Entry] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Coherence:OK] +[2026-02-19 13:42:15,033][DEBUG][superset_tools_app] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Action] [get_activity_summary][Exit] +[2026-02-19 13:42:15,034][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,034][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,034][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,034][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:15,035][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:42:15,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:42:15,036][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:42:15,036][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:42:15,036][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:42:15,036][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:42:15,036][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:42:36,392][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:42:36,393][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:42:36,393][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:42:36,393][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:42:36,394][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:42:36,394][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:42:36,395][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:42:36,395][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:42:36,395][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:42:36,396][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:42:36,398][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:42:36,398][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:42:36,399][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 13:42:36,399][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 13:42:36,399][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 13:44:33,758][DEBUG][superset_tools_app] [TestFunction][Entry] +[2026-02-19 13:44:33,758][INFO][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] Doing something important +[2026-02-19 13:44:33,758][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Coherence:OK] +[2026-02-19 13:44:33,758][DEBUG][superset_tools_app] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Action] [TestFunction][Exit] +[2026-02-19 13:44:33,760][DEBUG][superset_tools_app] [FailingFunction][Entry] +[2026-02-19 13:44:33,760][DEBUG][superset_tools_app] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Action] [FailingFunction][Coherence:Failed] Something went wrong +[2026-02-19 13:44:33,761][DEBUG][superset_tools_app] [SuccessFunction][Entry] +[2026-02-19 13:44:33,761][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Coherence:OK] +[2026-02-19 13:44:33,761][DEBUG][superset_tools_app] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Action] [SuccessFunction][Exit] +[2026-02-19 13:44:33,763][INFO][superset_tools_app] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] [InfoLevelFunction][Action] Doing something important +[2026-02-19 13:44:33,765][INFO][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] Doing something +[2026-02-19 13:44:33,765][DEBUG][superset_tools_app] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Action] [DisabledFunction][Coherence:OK] +[2026-02-19 13:44:33,766][DEBUG][superset_tools_app] [test_environment_model][Entry] +[2026-02-19 13:44:33,766][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Coherence:OK] +[2026-02-19 13:44:33,766][DEBUG][superset_tools_app] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Action] [test_environment_model][Exit] +[2026-02-19 13:46:05,995][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:46:05,996][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:05,997][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:05,999][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:05,999][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:05,999][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:06,001][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:06,001][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:06,002][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:46:06,002][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:46:06,002][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:46:06,006][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:46:06,006][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:06,006][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:46:06,020][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:46:06,021][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:06,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:06,021][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:06,022][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:06,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:06,023][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:06,023][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:06,026][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:46:06,027][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:46:06,027][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:06,027][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:06,027][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:46:06,027][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:06,027][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:06,027][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:46:06,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:06,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:46:06,040][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:46:06,041][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:06,041][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:06,042][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:06,042][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:06,042][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:06,043][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:06,043][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:06,045][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:46:06,045][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:46:06,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:06,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:06,045][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:46:06,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:46:06,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:46:06,046][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:46:06,053][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:46:06,053][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:46:06,053][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:46:06,053][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:46:06,053][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:46:06,054][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:46:06,054][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:46:06,054][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:46:06,054][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:46:06,383][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:46:06,383][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:46:06,383][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:46:06,383][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:46:06,384][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:46:06,796][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,796][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,796][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,797][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,797][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,797][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:46:06,801][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:46:06,806][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,806][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:46:06,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,808][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:46:06,808][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:46:06,808][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:46:06,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:46:06,808][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:46:06,809][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:46:06,809][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:46:06,809][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:46:06,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:06,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:46:21,026][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:46:21,026][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:21,026][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:21,027][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:21,027][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:21,027][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:21,027][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:21,028][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:21,028][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:46:21,028][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:46:21,028][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:46:21,029][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:46:21,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:21,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:46:21,049][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:46:21,050][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:21,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:21,051][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:21,051][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:21,051][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:21,051][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:21,052][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:21,053][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:46:21,053][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:46:21,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:21,053][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:21,053][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:46:21,054][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:21,054][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:21,054][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:46:21,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:21,055][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:46:21,061][INFO][superset_tools_app] Incoming request: GET /api/datasets +[2026-02-19 13:46:21,062][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:46:21,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:46:21,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:46:21,063][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:46:21,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:46:21,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:46:21,064][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:46:21,065][DEBUG][superset_tools_app] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:46:21,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 13:46:21,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:46:21,066][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:46:21,072][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:46:21,072][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:46:21,073][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 13:46:21,073][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:46:21,073][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:46:21,073][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:46:21,073][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:46:21,073][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:46:21,395][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:46:21,395][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:46:21,396][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:46:21,396][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:46:21,396][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:46:21,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 13:46:21,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:46:21,508][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:46:21,508][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 13:46:21,509][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 13:46:21,509][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 13:46:21,510][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 13:46:21,510][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 13:46:21,510][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 13:46:21,511][INFO][superset_tools_app] Response status: 200 for /api/datasets +[2026-02-19 13:46:21,511][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:46:21,511][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:40,276][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:48:40,277][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:40,277][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:40,277][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:40,277][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:40,277][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:40,278][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:40,278][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:40,278][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:48:40,278][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:48:40,278][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:48:40,280][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:48:40,281][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:40,282][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:40,299][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:48:40,299][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:40,300][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:40,300][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:40,300][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:40,300][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:40,301][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:40,301][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:48:40,304][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:40,304][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:40,304][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:48:40,305][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:40,305][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:40,321][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:48:40,327][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:40,328][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:40,329][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:40,329][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:40,329][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:40,331][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:40,333][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:40,336][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:48:40,336][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:48:40,337][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:48:40,338][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:48:40,338][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:48:40,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:48:40,338][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:48:40,339][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:48:40,339][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:48:40,339][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:48:40,340][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:48:40,340][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:48:40,340][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:48:40,340][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:48:40,348][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:48:40,348][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:48:40,348][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:48:40,348][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:48:40,348][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:48:40,349][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:48:40,349][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:48:40,349][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:48:40,349][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:48:40,349][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:48:40,349][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:48:40,349][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:48:40,678][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:48:40,678][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:48:40,679][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:48:40,679][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:48:40,679][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:48:40,851][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,851][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:48:40,851][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,852][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,852][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,852][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,852][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,853][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:48:40,853][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:48:40,859][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,859][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,859][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,860][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,860][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,860][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,860][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:48:40,860][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,861][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,861][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,861][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:40,861][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:48:40,861][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:48:40,861][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:48:40,862][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:48:40,863][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:48:40,863][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:48:40,863][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:48:40,864][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:48:40,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:40,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:52,609][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-19 13:48:52,611][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:52,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:52,611][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:52,612][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:52,612][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:52,612][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:52,613][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_settings][Entry] +[2026-02-19 13:48:52,615][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_config][Entry] +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:48:52,615][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:48:52,617][INFO][superset_tools_app] Response status: 200 for /api/settings +[2026-02-19 13:48:52,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:52,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:52,642][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:48:52,642][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:52,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:52,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:52,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:52,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:52,644][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:52,644][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:52,644][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:48:52,644][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:48:52,644][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:48:52,645][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:48:52,645][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:52,646][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:52,656][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated +[2026-02-19 13:48:52,657][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:52,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:52,657][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:52,657][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:52,657][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:52,658][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:52,658][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:52,659][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] +[2026-02-19 13:48:52,659][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 13:48:52,659][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 13:48:52,660][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:48:52,660][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:48:52,660][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 13:48:52,668][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 13:48:52,668][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 13:48:52,668][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 13:48:52,668][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 13:48:52,669][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated +[2026-02-19 13:48:52,669][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:52,670][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:59,243][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:48:59,244][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:59,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:59,244][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:59,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:59,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:59,245][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:59,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:59,246][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:48:59,246][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:48:59,246][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:48:59,247][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:48:59,248][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:59,248][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:59,261][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:48:59,261][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:59,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:59,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:59,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:59,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:59,262][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:59,263][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:59,263][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:48:59,263][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:48:59,263][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:59,263][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:59,263][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:48:59,264][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:59,264][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:59,264][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:48:59,264][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:59,264][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:48:59,275][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:48:59,276][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:48:59,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:48:59,276][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:48:59,276][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:48:59,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:48:59,277][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:48:59,277][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:48:59,279][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:48:59,279][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:48:59,280][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:48:59,280][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:48:59,286][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:48:59,286][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:48:59,286][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:48:59,286][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:48:59,286][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:48:59,286][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:48:59,286][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:48:59,286][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:48:59,286][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:48:59,287][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:48:59,287][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:48:59,287][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:48:59,287][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:48:59,607][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:48:59,607][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:48:59,607][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:48:59,607][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:48:59,607][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:48:59,856][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:48:59,857][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,857][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:48:59,857][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,858][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,858][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,858][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,858][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,859][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:48:59,859][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,867][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,867][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,867][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,868][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,868][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,868][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,868][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,868][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:48:59,868][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:48:59,869][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:48:59,869][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:48:59,869][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:48:59,869][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:48:59,869][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:48:59,869][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:48:59,871][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:48:59,872][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:48:59,872][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:48:59,872][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:48:59,873][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:48:59,873][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:49:29,431][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:49:29,432][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:49:29,433][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:49:29,433][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:49:29,433][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:49:29,433][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:49:29,434][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:49:29,434][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:49:29,436][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:29,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:29,437][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:49:29,437][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:49:29,437][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:49:29,446][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:49:29,448][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:49:29,448][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:49:29,448][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:49:29,448][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:49:29,448][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:49:29,449][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:49:29,449][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:49:29,450][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:49:29,450][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:49:29,450][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:49:29,451][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:49:29,457][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:49:29,457][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:49:29,457][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:49:29,457][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:49:29,458][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:49:29,458][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:49:29,458][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:49:29,458][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:49:29,458][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:49:29,775][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:49:29,775][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:49:29,775][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:49:29,775][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:49:29,775][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:49:30,006][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:49:30,006][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,007][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,007][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,007][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,008][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,008][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,009][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:49:30,009][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:49:30,009][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,009][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,009][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,009][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,010][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:49:30,011][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:49:30,022][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,023][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,023][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:49:30,023][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,024][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,024][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,025][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:30,025][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:30,025][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:49:30,026][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:49:30,026][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:49:30,026][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:49:30,026][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:49:30,029][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:49:30,030][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:49:30,031][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:49:30,031][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:49:30,032][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:49:30,032][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:49:47,050][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:49:47,050][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:49:47,050][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:49:47,051][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:49:47,051][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:49:47,051][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:49:47,053][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:49:47,053][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:49:47,054][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:49:47,054][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:49:47,054][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:49:47,055][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:49:47,056][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:49:47,056][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:49:47,070][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:49:47,070][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:49:47,071][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:49:47,071][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:49:47,071][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:49:47,071][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:49:47,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:49:47,072][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:49:47,073][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:47,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:47,073][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:49:47,074][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:49:47,074][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:49:47,081][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:49:47,083][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:49:47,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:49:47,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:49:47,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:49:47,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:49:47,087][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:49:47,087][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:49:47,089][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:49:47,090][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:49:47,090][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:49:47,091][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:49:47,091][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:49:47,098][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:49:47,098][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:49:47,098][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:49:47,098][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:49:47,098][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:49:47,098][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:49:47,098][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:49:47,098][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:49:47,098][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:49:47,099][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:49:47,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:49:47,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:49:47,099][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:49:47,412][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:49:47,413][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:49:47,413][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:49:47,413][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:49:47,413][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:49:47,595][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,595][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,596][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,596][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,596][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,597][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:49:47,597][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,603][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,603][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,603][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:49:47,603][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:49:47,603][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:49:47,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:49:47,604][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:49:47,606][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:49:47,606][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:49:47,606][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:49:47,606][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:49:47,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:49:47,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:53:38,619][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-19 13:53:38,619][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-19 13:53:38,619][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-19 13:53:38,619][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-19 13:53:38,620][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-19 13:53:38,620][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-19 13:53:38,620][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-19 13:53:40,751][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:53:40,751][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:53:40,751][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:53:40,751][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,757][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,758][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,758][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:40,759][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,760][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:40,760][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:40,761][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:40,761][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 13:53:40,761][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,761][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,761][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:40,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:40,943][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:40,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 13:53:40,944][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 13:53:40,945][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:40,945][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:41,174][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:41,175][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:41,175][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 13:53:41,176][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 13:53:41,176][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 13:53:41,176][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 13:53:41,177][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 13:53:41,177][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:53:41,177][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 13:53:41,177][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 13:53:41,178][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 13:53:41,178][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:41,188][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 13:53:41,189][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:53:41,189][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 13:53:41,189][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 13:53:41,189][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 13:53:41,190][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 13:53:41,190][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 13:53:41,201][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 13:53:41,202][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 13:53:41,202][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 13:53:41,203][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:53:41,203][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 13:53:41,203][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 13:53:41,203][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 13:53:41,235][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 13:53:41,235][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 13:53:41,235][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 13:53:41,342][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 13:53:41,342][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 13:53:41,342][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 13:53:41,342][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 13:53:41,342][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 13:53:41,342][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 13:53:41,343][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 13:53:41,343][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 13:53:57,077][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:53:57,079][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:53:57,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:53:57,091][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:53:57,092][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:53:57,092][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:53:57,098][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:53:57,099][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:53:57,099][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:53:57,099][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:53:57,100][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:53:57,114][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:53:57,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:53:57,120][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:53:57,173][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:53:57,175][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:53:57,176][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:53:57,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:53:57,176][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:53:57,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:53:57,179][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:53:57,179][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:53:57,185][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:53:57,185][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:53:57,186][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:53:57,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:53:57,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:53:57,208][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:53:57,210][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:53:57,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:53:57,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:53:57,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:53:57,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:53:57,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:53:57,214][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:53:57,218][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:53:57,219][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:53:57,220][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:53:57,220][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:53:57,220][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:53:57,231][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:53:57,232][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:53:57,232][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:53:57,232][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:53:57,232][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:53:57,232][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:53:57,233][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:53:57,233][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:53:57,233][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:53:57,233][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:53:57,561][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:53:57,562][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:53:57,562][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:53:57,562][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:53:57,562][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:53:57,723][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,723][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,724][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,724][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,724][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,724][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,724][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,725][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,725][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,731][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:53:57,731][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:53:57,744][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,745][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,745][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,745][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,745][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,746][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,746][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,746][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,747][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,747][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,747][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:53:57,747][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:53:57,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:53:57,748][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:53:57,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:53:57,750][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:53:57,752][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:53:57,752][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:53:57,753][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:53:57,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:53:57,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:02,972][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:54:02,975][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:02,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:02,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:02,977][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:02,977][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:02,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:02,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:02,980][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:54:02,980][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:54:02,980][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:54:02,982][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:54:02,984][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:02,984][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:03,021][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:54:03,022][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:03,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:03,024][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:03,024][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:03,024][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:03,027][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:03,027][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:54:03,029][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:03,029][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:03,030][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:54:03,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:03,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:03,040][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:54:03,041][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:03,042][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:03,043][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:03,043][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:03,043][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:03,046][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:03,046][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:03,050][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:54:03,051][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:54:03,051][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:54:03,052][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:54:03,052][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:54:03,064][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:54:03,065][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:54:03,065][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:54:03,065][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:54:03,065][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:54:03,066][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:54:03,066][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:54:03,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:54:03,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:54:03,066][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:54:03,406][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:54:03,406][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:54:03,406][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:54:03,407][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:54:03,407][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:54:03,558][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,558][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,559][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,559][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,560][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:54:03,560][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,565][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:54:03,565][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,566][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,566][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,566][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,566][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,566][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:54:03,566][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,567][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:03,567][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:54:03,567][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:54:03,567][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:54:03,569][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:54:03,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:54:03,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:54:03,570][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:54:03,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:03,571][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:06,894][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:54:06,895][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:06,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:06,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:06,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:06,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:06,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:06,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:06,897][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:54:06,897][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:54:06,897][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:54:06,898][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:54:06,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:06,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:06,914][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:54:06,914][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:06,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:06,917][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:54:06,917][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:54:06,917][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:06,918][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:06,918][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:54:06,918][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:06,918][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:06,918][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:54:06,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:06,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:06,928][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:54:06,928][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:06,929][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:06,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:06,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:06,929][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:06,930][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:06,930][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:54:06,931][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:54:06,931][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:54:06,932][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:54:06,932][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:54:06,938][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:54:06,938][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:54:06,938][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:54:07,257][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:54:07,257][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:54:07,257][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:54:07,258][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:54:07,258][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:54:07,483][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:54:07,483][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,484][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,484][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:54:07,485][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:54:07,491][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:54:07,491][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:54:07,491][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:54:07,493][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:54:07,493][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:54:07,493][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:54:07,494][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:54:07,495][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:07,495][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:10,616][INFO][superset_tools_app] Incoming request: GET /api/llm/providers +[2026-02-19 13:54:10,618][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:10,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:10,618][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:10,619][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:10,619][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:10,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:10,620][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:10,620][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 13:54:10,621][INFO][superset_tools_app] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 13:54:10,621][DEBUG][superset_tools_app] [get_all_providers][Entry] +[2026-02-19 13:54:10,626][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 13:54:10,626][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 13:54:10,627][INFO][superset_tools_app] Response status: 200 for /api/llm/providers +[2026-02-19 13:54:10,627][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 13:54:10,628][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 13:54:10,628][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:10,628][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:10,634][INFO][superset_tools_app] Incoming request: POST /api/tasks +[2026-02-19 13:54:10,635][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:54:10,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:54:10,635][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:54:10,635][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:54:10,635][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:54:10,636][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:54:10,636][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:54:10,637][DEBUG][superset_tools_app] [create_task][Entry] +[2026-02-19 13:54:10,637][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:54:10,639][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:54:10,640][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:54:10,643][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 54eeeb08-8667-4efc-9e34-11fbdf8e9a1c created and scheduled for execution +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 13:54:10,643][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 13:54:10,644][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,644][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 13:54:10,644][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:54:10,644][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:54:10,644][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 54eeeb08-8667-4efc-9e34-11fbdf8e9a1c for plugin 'Dashboard LLM Validation' +[2026-02-19 13:54:10,644][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,647][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:54:10,649][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:54:10,649][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 13:54:10,649][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 13:54:10,650][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:54:10,650][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:54:10,651][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:10,651][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:10,651][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:10,651][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 13:54:10,651][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 13:54:10,652][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 13:54:10,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:54:10,654][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:54:11,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:11,195][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 13:54:11,196][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 13:54:11,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 13:54:11,316][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 13:54:13,648][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 13:54:13,655][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 13:54:13,682][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 13:54:13,688][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 13:54:13,689][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 13:54:13,728][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 13:54:13,755][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 13:54:14,806][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 13:54:14,813][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 13:54:14,814][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqA0EMRO_S6yx... +[2026-02-19 13:54:14,814][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 13:54:17,760][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 13:54:17,787][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 13:54:17,802][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 13:54:17,813][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 13:54:17,813][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 13:54:17,822][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 13:54:17,822][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 13:54:18,529][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 13:54:33,557][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 13:54:33,567][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 13:54:33,690][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 13:54:33,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 13:54:33,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:54:33,691][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:54:33,697][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:54:33,697][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:54:33,697][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:54:33,697][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:33,697][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:33,697][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:33,698][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 13:54:33,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:54:33,698][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:54:33,698][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 13:54:33,698][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:54:33,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:54:33,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:54:33,698][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:54:34,026][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:54:34,026][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:54:34,026][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:54:34,026][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:54:34,026][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:54:34,165][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 13:54:34,165][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 13:54:34,165][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 13:54:34,166][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 13:54:34,166][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 13:54:34,166][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 13:54:34,218][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:34,218][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:34,218][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:34,218][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 13:54:34,302][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 13:54:34,309][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 13:54:34,310][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 13:54:34,310][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 13:54:34,310][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 13:54:34,310][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 13:54:34,310][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 13:54:35,111][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:54:35,112][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,112][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,113][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,113][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,113][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,113][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,118][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,118][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,118][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 13:54:35,119][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 54eeeb08-8667-4efc-9e34-11fbdf8e9a1c completed successfully +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:54:35,119][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,123][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 13:54:35,123][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 13:54:35,123][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=54eeeb08-8667-4efc-9e34-11fbdf8e9a1c +[2026-02-19 13:54:35,130][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:54:35,130][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:54:35,130][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 54eeeb08-8667-4efc-9e34-11fbdf8e9a1c execution finished with status: TaskStatus.SUCCESS +[2026-02-19 13:54:35,130][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 13:54:35,130][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 13:56:36,521][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:56:36,523][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:56:36,523][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:56:36,524][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:56:36,524][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:56:36,524][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:56:36,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:56:36,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:56:36,530][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:56:36,530][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:56:36,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:36,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:36,531][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:56:36,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:36,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:36,531][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:56:36,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:56:36,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:56:36,556][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:56:36,559][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:56:36,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:56:36,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:56:36,562][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:56:36,562][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:56:36,565][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:56:36,566][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:56:36,570][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:56:36,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:56:36,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:56:36,571][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:56:36,580][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:56:36,580][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:56:36,580][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:56:36,581][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:56:36,581][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:56:36,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:56:36,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:56:36,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:56:36,905][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:56:36,906][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:56:36,906][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:56:36,906][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:56:36,906][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:56:37,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:56:37,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:56:37,073][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:56:37,073][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:56:37,073][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:56:37,073][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,074][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,074][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,074][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,074][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,075][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:56:37,075][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,081][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:56:37,081][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,082][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,082][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,082][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,082][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:56:37,082][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,083][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,083][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:37,083][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:56:37,083][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:56:37,083][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:56:37,086][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:56:37,087][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:56:37,087][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:56:37,088][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:56:37,089][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:56:37,090][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:56:45,902][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:56:45,905][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:56:45,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:56:45,907][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:56:45,907][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:56:45,907][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:56:45,911][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:56:45,912][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:56:45,913][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:56:45,913][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:56:45,914][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:56:45,918][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:56:45,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:56:45,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:56:45,971][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:56:45,974][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:56:45,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:56:45,976][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:56:45,976][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:56:45,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:56:45,980][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:56:45,982][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:56:45,987][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:56:45,987][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:56:45,987][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:45,988][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:45,988][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:56:45,988][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:45,988][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:45,988][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:56:45,989][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:56:45,989][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:56:46,011][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:56:46,013][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:56:46,014][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:56:46,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:56:46,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:56:46,014][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:56:46,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:56:46,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:56:46,020][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:56:46,020][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:56:46,020][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:56:46,020][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:56:46,020][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:56:46,021][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:56:46,021][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:56:46,021][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:56:46,021][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:56:46,021][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:56:46,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:56:46,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:56:46,022][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:56:46,022][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:56:46,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:56:46,022][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:56:46,023][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:56:46,023][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:56:46,023][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:56:46,036][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:56:46,037][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:56:46,037][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:56:46,037][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:56:46,037][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:56:46,038][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:56:46,038][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:56:46,038][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:56:46,038][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:56:46,038][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:56:46,038][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:56:46,038][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:56:46,429][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:56:46,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:56:46,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:56:46,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:56:46,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:56:46,590][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:56:46,591][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,591][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,591][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,591][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:56:46,591][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,592][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,592][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:56:46,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:56:46,605][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,606][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,606][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:56:46,606][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,607][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:56:46,607][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,608][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,608][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:56:46,608][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:56:46,609][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:56:46,609][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:56:46,609][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:56:46,609][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:56:46,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:56:46,609][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:56:46,611][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:56:46,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:56:46,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:56:46,613][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:56:46,614][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:56:46,614][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:35,453][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 13:57:35,453][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:35,454][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:35,454][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:35,454][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:35,454][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:35,455][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:35,456][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:35,456][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 13:57:35,456][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 13:57:35,456][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 13:57:35,458][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 13:57:35,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:35,459][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:35,472][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 13:57:35,473][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:35,473][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:35,473][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:35,473][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:35,473][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:35,474][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:35,474][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:35,475][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:57:35,476][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 13:57:35,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:57:35,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:57:35,476][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 13:57:35,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:57:35,476][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:57:35,476][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 13:57:35,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:35,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:35,487][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 13:57:35,489][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:35,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:35,489][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:35,489][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:35,489][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:35,490][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:35,491][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 13:57:35,492][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:57:35,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 13:57:35,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:57:35,493][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 13:57:35,494][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:57:35,494][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:57:35,501][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:57:35,501][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:57:35,501][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 13:57:35,501][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 13:57:35,501][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 13:57:35,502][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:57:35,502][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:57:35,502][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 13:57:35,502][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:57:35,502][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:57:35,502][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:57:35,502][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:57:35,835][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:57:35,835][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:57:35,835][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:57:35,835][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:57:35,835][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:57:35,991][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 13:57:35,992][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,992][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,992][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,992][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 13:57:35,992][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,993][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 13:57:35,993][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 13:57:35,997][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,997][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,997][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,998][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,998][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,998][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,998][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,998][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,999][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,999][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,999][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 13:57:35,999][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 13:57:35,999][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 13:57:35,999][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 13:57:36,000][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 13:57:36,000][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 13:57:36,000][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 13:57:36,001][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 13:57:36,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:36,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:38,104][INFO][superset_tools_app] Incoming request: GET /api/llm/providers +[2026-02-19 13:57:38,105][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:38,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:38,106][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:38,106][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:38,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:38,107][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:38,108][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:38,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 13:57:38,108][INFO][superset_tools_app] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 13:57:38,109][DEBUG][superset_tools_app] [get_all_providers][Entry] +[2026-02-19 13:57:38,109][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 13:57:38,109][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 13:57:38,109][INFO][superset_tools_app] Response status: 200 for /api/llm/providers +[2026-02-19 13:57:38,110][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 13:57:38,110][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 13:57:38,110][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:38,110][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:38,117][INFO][superset_tools_app] Incoming request: POST /api/tasks +[2026-02-19 13:57:38,118][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:38,118][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:38,119][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:38,119][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:38,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:38,120][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:38,120][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [create_task][Entry] +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 13:57:38,121][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:57:38,122][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:57:38,124][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 138e0b42-e79c-49fc-8689-841f11834bd6 created and scheduled for execution +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 13:57:38,124][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 13:57:38,125][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,125][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 13:57:38,125][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 13:57:38,125][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 13:57:38,125][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 138e0b42-e79c-49fc-8689-841f11834bd6 for plugin 'Dashboard LLM Validation' +[2026-02-19 13:57:38,125][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 13:57:38,127][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,128][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 13:57:38,129][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 13:57:38,129][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 13:57:38,129][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 13:57:38,130][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:38,130][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 13:57:38,130][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 13:57:38,131][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 13:57:38,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:38,132][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:38,149][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,152][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 13:57:38,153][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 138e0b42-e79c-49fc-8689-841f11834bd6 (source=None, level=None) +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 13:57:38,153][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 13:57:38,153][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 13:57:38,156][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,156][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:38,156][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:38,156][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:38,157][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:38,157][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:38,157][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:38,157][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:38,160][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:38,160][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:38,164][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 13:57:38,164][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,164][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:38,164][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:38,164][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:57:38,165][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:57:38,165][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:38,166][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:38,166][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:38,527][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 13:57:38,586][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 13:57:39,211][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:39,215][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 13:57:39,215][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 13:57:39,717][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 13:57:39,730][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 13:57:40,031][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 13:57:40,046][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 13:57:40,046][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 13:57:40,094][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 13:57:40,130][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 13:57:41,095][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 13:57:41,103][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 13:57:41,104][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkFqAzEMRe_idRe... +[2026-02-19 13:57:41,104][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 13:57:43,144][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:43,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:43,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:43,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:43,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:43,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:43,149][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:43,149][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:57:43,151][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:57:43,151][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:43,153][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:43,154][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:43,731][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 13:57:43,756][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 13:57:43,770][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 13:57:43,785][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 13:57:43,785][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 13:57:43,794][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 13:57:43,794][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 13:57:44,503][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 13:57:48,143][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:48,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:48,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:48,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:48,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:48,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:48,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:48,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:57:48,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:57:48,149][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:48,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:48,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:53,143][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:53,144][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:53,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:53,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:53,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:53,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:53,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:53,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:57:53,149][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:57:53,149][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:53,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:53,150][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:58,144][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:58,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:57:58,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:57:58,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:57:58,146][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:57:58,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:57:58,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:57:58,147][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:57:58,148][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:57:58,148][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:58,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:57:58,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 13:57:59,531][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 13:57:59,539][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 13:57:59,641][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 13:57:59,641][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 13:57:59,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 13:57:59,642][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 13:57:59,642][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 13:57:59,647][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 13:57:59,647][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 13:57:59,647][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 13:57:59,648][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 13:57:59,648][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 13:57:59,648][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 13:57:59,648][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 13:57:59,978][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 13:57:59,978][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 13:57:59,978][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 13:57:59,978][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 13:57:59,978][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 13:58:00,090][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 13:58:00,096][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,096][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,096][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,096][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 13:58:00,124][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 13:58:00,127][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 13:58:00,127][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 13:58:00,127][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 13:58:00,127][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 13:58:00,127][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 13:58:00,127][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 13:58:00,668][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:58:00,668][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:58:00,669][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,669][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 13:58:00,672][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 138e0b42-e79c-49fc-8689-841f11834bd6 completed successfully +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 13:58:00,672][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,676][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 13:58:00,676][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 13:58:00,676][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,679][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 13:58:00,679][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 13:58:00,679][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 138e0b42-e79c-49fc-8689-841f11834bd6 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 13:58:00,679][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 13:58:00,679][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 13:58:00,706][INFO][superset_tools_app] Incoming request: GET /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,707][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 13:58:00,708][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 13:58:00,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 13:58:00,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 13:58:00,708][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 13:58:00,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 13:58:00,710][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 13:58:00,711][DEBUG][superset_tools_app] [get_task][Entry] +[2026-02-19 13:58:00,711][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,712][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 13:58:00,712][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 13:58:00,712][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 13:58:00,712][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 13:58:00,712][INFO][superset_tools_app] Response status: 200 for /api/tasks/138e0b42-e79c-49fc-8689-841f11834bd6 +[2026-02-19 13:58:00,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 13:58:00,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:00:08,089][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 14:00:08,089][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:00:08,090][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:00:08,090][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:00:08,090][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:00:08,090][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:00:08,091][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:00:08,091][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=2, page_size=10 +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:00:08,093][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:00:08,093][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:00:08,093][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 14:00:08,094][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:00:08,094][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:00:08,098][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:00:08,099][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:00:08,099][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 14:00:08,099][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 14:00:08,099][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:00:08,100][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:00:08,100][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 14:00:08,100][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:00:08,100][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:00:08,100][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:00:08,100][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:00:08,430][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:00:08,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:00:08,430][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:00:08,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:00:08,430][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:00:08,592][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 14:00:08,593][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,593][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,593][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,594][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,594][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 14:00:08,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 14:00:08,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,601][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,601][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,601][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,601][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:08,602][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 14:00:08,602][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 14:00:08,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 14:00:08,604][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 3 dashboards (page 2/2, total: 13) +[2026-02-19 14:00:08,604][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:00:08,604][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:00:08,604][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 14:00:08,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:00:08,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:00:10,042][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 14:00:10,045][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:00:10,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:00:10,046][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:00:10,046][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:00:10,046][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:00:10,047][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:00:10,047][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:00:10,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:00:10,050][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 14:00:10,050][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:00:10,051][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:00:10,055][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 14:00:10,056][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:00:10,056][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:00:10,370][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:00:10,371][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:00:10,371][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:00:10,371][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:00:10,371][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:00:10,523][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 14:00:10,524][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,524][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,524][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,525][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,525][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,525][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,525][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,526][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 14:00:10,526][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,531][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,531][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,531][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,532][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,532][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,532][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,532][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,532][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,532][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:00:10,533][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 14:00:10,533][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 14:00:10,533][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 14:00:10,534][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 14:00:10,534][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:00:10,534][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:00:10,534][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 14:00:10,535][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:00:10,535][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:06:04,955][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 14:06:04,957][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:06:04,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:06:04,959][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:06:04,959][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:06:04,959][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:06:04,961][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:06:04,961][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 14:06:04,964][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:06:04,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:06:04,964][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 14:06:04,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:06:04,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:06:04,973][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 14:06:04,975][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:06:04,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:06:04,976][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:06:04,976][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:06:04,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:06:04,977][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:06:04,977][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 14:06:04,978][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:06:04,979][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:06:04,979][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:06:04,979][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:06:04,988][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:06:04,989][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:06:04,989][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 14:06:04,989][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:06:04,989][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 14:06:04,990][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:06:04,990][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:06:04,990][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:06:04,990][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:06:05,330][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:06:05,330][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:06:05,331][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:06:05,331][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:06:05,331][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:06:05,567][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 14:06:05,568][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 14:06:05,569][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,569][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,570][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,570][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 14:06:05,570][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,571][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,571][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,572][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,572][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 14:06:05,572][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 14:06:05,573][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,573][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,573][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,573][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,574][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 14:06:05,575][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 14:06:05,593][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,593][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,593][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,594][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 14:06:05,594][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 14:06:05,594][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,595][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,595][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 14:06:05,595][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,596][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,596][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,597][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,597][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 14:06:05,598][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,599][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,599][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,600][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,600][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 14:06:05,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 14:06:05,600][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:06:05,600][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:06:05,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:06:05,601][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:06:05,601][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 14:06:05,601][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 14:06:05,602][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 14:06:05,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 14:06:05,602][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 14:06:05,607][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 14:06:05,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:06:05,609][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:06:05,609][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 14:06:05,612][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:06:05,613][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:05,402][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 14:07:05,403][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:05,406][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:05,407][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:05,408][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:05,409][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:05,412][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:05,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:05,414][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 14:07:05,415][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 14:07:05,416][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 14:07:05,420][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 14:07:05,422][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:05,423][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:05,450][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 14:07:05,451][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:05,451][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:05,451][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:05,451][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:05,451][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:05,452][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:05,452][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:05,453][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 14:07:05,454][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 14:07:05,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:07:05,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:07:05,454][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 14:07:05,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:07:05,454][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:07:05,454][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 14:07:05,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:05,455][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:05,467][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 14:07:05,470][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:05,470][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:05,471][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:05,471][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:05,471][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:05,474][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:05,474][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:05,478][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 14:07:05,479][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 14:07:05,479][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 14:07:05,479][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 14:07:05,479][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:07:05,480][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 14:07:05,480][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:07:05,480][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:07:05,490][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:07:05,490][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:07:05,490][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 14:07:05,490][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 14:07:05,490][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 14:07:05,491][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:07:05,491][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:07:05,491][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:07:05,491][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:07:05,819][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:07:05,819][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:07:05,819][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:07:05,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:07:05,820][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:07:06,176][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 14:07:06,176][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 14:07:06,176][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 14:07:06,177][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,177][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,177][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,177][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,178][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,178][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,178][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,179][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 14:07:06,179][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 14:07:06,190][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,191][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,191][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,192][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,192][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,192][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,192][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 14:07:06,192][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 14:07:06,193][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 14:07:06,193][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 14:07:06,194][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 14:07:06,194][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 14:07:06,194][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 14:07:06,198][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 14:07:06,199][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 14:07:06,200][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 14:07:06,200][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 14:07:06,201][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:06,202][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:28,798][INFO][superset_tools_app] Incoming request: GET /api/llm/providers +[2026-02-19 14:07:28,800][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:28,800][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:28,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:28,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:28,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:28,802][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:28,802][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:28,802][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 14:07:28,802][INFO][superset_tools_app] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 14:07:28,802][DEBUG][superset_tools_app] [get_all_providers][Entry] +[2026-02-19 14:07:28,803][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 14:07:28,803][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 14:07:28,803][INFO][superset_tools_app] Response status: 200 for /api/llm/providers +[2026-02-19 14:07:28,804][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 14:07:28,804][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 14:07:28,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:28,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:28,813][INFO][superset_tools_app] Incoming request: POST /api/tasks +[2026-02-19 14:07:28,813][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:28,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:28,814][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:28,814][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:28,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:28,815][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:28,815][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:28,816][DEBUG][superset_tools_app] [create_task][Entry] +[2026-02-19 14:07:28,817][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 14:07:28,817][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:28,817][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 14:07:28,818][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:07:28,820][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task cb3f5cb9-5412-49e2-8cae-b66cf9076475 created and scheduled for execution +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 14:07:28,820][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task cb3f5cb9-5412-49e2-8cae-b66cf9076475 for plugin 'Dashboard LLM Validation' +[2026-02-19 14:07:28,820][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,821][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:07:28,821][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:07:28,821][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 14:07:28,822][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,823][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:28,824][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 14:07:28,824][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 14:07:28,824][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,824][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:28,825][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 14:07:28,825][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 14:07:28,826][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 14:07:28,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:28,828][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:28,845][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,845][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 14:07:28,846][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task cb3f5cb9-5412-49e2-8cae-b66cf9076475 (source=None, level=None) +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 14:07:28,846][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 14:07:28,846][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 14:07:28,849][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,849][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 14:07:28,849][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 14:07:28,851][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,852][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:28,853][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:28,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:28,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:28,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:28,856][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:28,857][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:28,861][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 14:07:28,862][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,862][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 14:07:28,862][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 14:07:28,862][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 14:07:28,862][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 14:07:28,862][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:28,864][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:28,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:29,250][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:29,256][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 14:07:29,256][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 14:07:29,581][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 14:07:29,664][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 14:07:30,980][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 14:07:31,007][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 14:07:31,660][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 14:07:31,669][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 14:07:31,670][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 14:07:31,740][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 14:07:31,819][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 14:07:32,857][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 14:07:32,868][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 14:07:32,869][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqBDEMRO_idRa... +[2026-02-19 14:07:32,869][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 14:07:33,851][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:33,853][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:33,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:33,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:33,854][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:33,855][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:33,855][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:33,856][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:33,859][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 14:07:33,859][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:33,859][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 14:07:33,859][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 14:07:33,859][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 14:07:33,860][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 14:07:33,860][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:33,861][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:33,862][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:35,077][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 14:07:35,077][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:35,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:35,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:35,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:35,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:35,079][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:35,079][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:35,079][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 14:07:35,079][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 14:07:35,079][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 14:07:35,080][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 14:07:35,081][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 14:07:35,082][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 14:07:35,084][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 14:07:35,084][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 14:07:35,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:35,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:35,098][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 14:07:35,100][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:35,101][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:35,101][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:35,101][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:35,101][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:35,104][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:35,104][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:35,108][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 14:07:35,108][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 14:07:35,109][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 14:07:35,110][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 14:07:35,110][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,113][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:07:35,113][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:07:35,114][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 created and scheduled for execution +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,114][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 14:07:35,115][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 14:07:35,115][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 14:07:35,115][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 for plugin 'Dashboard LLM Validation' +[2026-02-19 14:07:35,115][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,118][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:07:35,118][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:07:35,118][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,118][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,118][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 14:07:35,119][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,121][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 14:07:35,122][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 14:07:35,123][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 14:07:35,124][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 14:07:35,124][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 14:07:35,124][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 14:07:35,124][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:35,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=9 +[2026-02-19 14:07:35,125][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 9 +[2026-02-19 14:07:35,128][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 14:07:35,130][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:35,130][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:35,139][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,139][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 14:07:35,139][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 14:07:35,139][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 (source=None, level=None) +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 14:07:35,140][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 14:07:35,140][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 14:07:35,141][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,141][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 14:07:35,142][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 14:07:35,142][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,145][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:07:35,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:07:35,147][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:07:35,147][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:07:35,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:07:35,149][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:07:35,150][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:07:35,154][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 14:07:35,154][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,154][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 14:07:35,154][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 14:07:35,155][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 14:07:35,155][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 14:07:35,156][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:07:35,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:07:35,257][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:07:35,276][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 14:07:35,278][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 14:07:36,031][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 14:07:36,107][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 14:07:36,120][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 14:07:36,146][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 14:07:36,184][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 14:07:36,184][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 14:07:36,211][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 14:07:36,211][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 14:07:36,223][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 14:07:36,932][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 14:07:37,422][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 14:07:37,439][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 14:07:38,098][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 14:07:38,130][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 14:07:38,130][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 14:07:38,202][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 14:07:38,263][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 14:07:39,277][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 14:07:39,295][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 14:07:39,296][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkFqAzEMRe_idRe... +[2026-02-19 14:07:39,296][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 14:07:43,561][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 14:07:43,611][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 14:07:43,626][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 14:07:43,662][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 14:07:43,663][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 14:07:43,683][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 14:07:43,684][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 14:07:44,393][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 14:07:51,962][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 14:07:51,977][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 14:07:52,141][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 14:07:52,142][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 14:07:52,142][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 14:07:52,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 14:07:52,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:07:52,143][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:07:52,149][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:07:52,150][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:07:52,150][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 14:07:52,150][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:07:52,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:07:52,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:07:52,150][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:07:52,466][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:07:52,466][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:07:52,466][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:07:52,466][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:07:52,466][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:07:52,570][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 14:07:52,571][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 14:07:52,571][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 14:07:52,572][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 14:07:52,574][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 14:07:52,574][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 14:07:52,593][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:52,594][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:52,594][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:52,594][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 14:07:52,631][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 14:07:52,636][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 14:07:52,637][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 14:07:52,637][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 14:07:52,637][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 14:07:52,637][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 14:07:52,637][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 14:07:52,640][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:52,640][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:52,640][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 14:07:52,640][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 14:07:53,136][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:07:53,138][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:07:53,139][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,140][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,141][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,141][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,141][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,141][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,143][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 14:07:53,144][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task cb3f5cb9-5412-49e2-8cae-b66cf9076475 completed successfully +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:07:53,144][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,155][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 14:07:53,155][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 14:07:53,155][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cb3f5cb9-5412-49e2-8cae-b66cf9076475 +[2026-02-19 14:07:53,159][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:07:53,159][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:07:53,159][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task cb3f5cb9-5412-49e2-8cae-b66cf9076475 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 14:07:53,159][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 14:07:53,159][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 14:07:59,411][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 0 +[2026-02-19 14:07:59,449][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 14:07:59,493][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 14:07:59,533][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 14:07:59,561][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 14:07:59,595][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 14:07:59,630][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 14:07:59,667][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 14:07:59,720][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 14:08:04,078][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 14:08:06,768][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 14:08:08,502][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 14:08:11,327][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 14:08:13,145][INFO][superset_tools_app] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 14:08:15,999][INFO][superset_tools_app] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 14:08:17,759][INFO][superset_tools_app] [DEBUG] Calculated full height: 983 +[2026-02-19 14:08:17,778][ERROR][superset_tools_app] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 14:08:18,150][DEBUG][superset_tools_app] [capture_dashboard][Coherence:OK] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [capture_dashboard][Exit] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 14:08:18,151][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 14:08:18,151][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 14:08:18,151][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 14:08:18,152][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 14:08:18,152][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 14:08:18,159][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 14:08:18,159][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 14:08:18,160][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 14:08:18,160][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 14:08:18,160][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 14:08:18,161][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 14:08:18,161][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 14:08:18,493][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 14:08:18,494][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 14:08:18,494][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 14:08:18,494][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 14:08:18,494][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 14:08:18,605][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 14:08:18,605][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 14:08:18,605][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 14:08:18,606][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 14:08:18,606][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 14:08:18,606][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 14:08:18,614][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:18,615][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:18,616][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:18,616][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 14:08:18,669][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x786 to 1024x786 +[2026-02-19 14:08:18,679][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 58.34 KB +[2026-02-19 14:08:18,680][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 14:08:18,680][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 14:08:18,680][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 14:08:18,680][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 14:08:18,680][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 14:08:19,283][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,289][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 14:08:19,289][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 14:08:19,353][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:08:19,354][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:08:19,354][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 14:08:19,354][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 14:08:19,354][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,355][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,356][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,356][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,356][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,360][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,361][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,361][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,361][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,361][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,362][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,362][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 14:08:19,362][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 14:08:19,362][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 completed successfully +[2026-02-19 14:08:19,362][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,363][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 14:08:19,363][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 14:08:19,363][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,367][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 14:08:19,367][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 14:08:19,367][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=cba7b712-5dcc-4f98-ba68-e6d84f4711b6 +[2026-02-19 14:08:19,370][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 14:08:19,370][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 14:08:19,370][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task cba7b712-5dcc-4f98-ba68-e6d84f4711b6 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 14:08:19,370][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 14:08:19,370][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 14:30:26,770][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:30:26,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:30:26,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:30:26,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:30:26,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:30:26,773][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:30:26,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:30:26,776][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 14:30:26,776][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 14:30:26,776][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 14:30:26,777][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 14:30:26,777][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 14:30:26,777][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 14:30:26,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:30:26,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 14:49:17,515][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 14:49:17,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 14:49:17,516][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 14:49:17,516][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 14:49:17,516][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 14:49:17,517][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 14:49:17,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 14:49:17,521][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 14:49:17,522][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 14:49:17,522][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 14:49:17,522][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 14:49:17,522][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 14:49:17,523][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 14:49:17,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 14:49:17,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:17:31,527][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:17:31,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:17:31,527][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:17:31,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:17:31,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:17:31,528][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:17:31,529][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:17:31,530][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:17:31,531][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:17:31,531][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:17:31,531][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:17:31,531][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:17:31,531][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:17:31,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:17:31,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:19:56,724][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:19:56,725][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:19:56,725][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:19:56,726][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:19:56,726][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:19:56,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:19:56,727][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:19:56,727][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:19:56,727][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:19:56,727][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:19:56,727][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:19:56,728][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:19:56,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:19:56,729][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:19:56,752][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:19:56,752][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:19:56,753][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:19:56,753][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:19:56,753][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:19:56,753][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:19:56,754][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:19:56,754][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:19:56,762][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:19:56,763][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:19:56,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:19:56,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:19:56,763][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:19:56,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:19:56,763][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:19:56,763][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:19:56,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:19:56,764][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:19:56,770][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:19:56,771][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:19:56,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:19:56,771][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:19:56,771][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:19:56,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:19:56,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:19:56,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:19:56,773][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:19:56,774][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:19:56,774][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:19:56,774][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:19:56,779][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:19:56,779][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:19:56,779][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:19:56,779][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:19:56,779][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:19:56,780][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:19:56,780][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:19:56,780][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:19:56,780][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:19:58,043][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:19:58,043][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:19:58,043][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:19:58,043][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:19:58,043][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:19:58,935][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:19:58,935][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,936][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,936][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,936][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,936][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,936][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,937][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:19:58,937][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,941][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,941][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,941][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,941][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,942][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,942][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,942][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,942][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:19:58,942][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:19:58,942][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:19:58,942][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:19:58,943][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:19:58,943][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:19:58,943][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:19:58,944][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:19:58,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:19:58,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:15,547][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:31:15,548][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:15,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:15,549][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:15,549][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:15,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:15,551][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:15,551][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:15,551][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:31:15,552][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:31:15,552][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:31:15,553][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:31:15,554][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:15,554][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:15,573][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:31:15,575][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:15,577][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:15,577][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:15,577][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:15,577][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:15,578][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:15,579][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:31:15,581][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:15,581][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:15,581][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:31:15,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:15,582][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:15,593][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:31:15,594][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:15,595][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:15,595][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:15,595][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:15,595][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:15,596][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:15,597][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:31:15,598][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:15,598][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:31:15,599][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:31:15,599][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:31:15,607][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:31:15,608][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:31:15,608][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:31:15,608][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:31:15,608][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:31:15,609][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:31:15,609][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:31:15,609][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:31:15,609][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:31:15,609][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:31:15,609][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:31:15,609][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:31:15,609][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:31:16,751][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:31:16,752][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:31:16,752][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:31:16,752][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:31:16,752][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:31:17,325][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:31:17,325][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,326][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,326][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,326][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,326][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:31:17,326][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:31:17,327][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:31:17,332][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,333][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,333][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,333][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:31:17,333][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,334][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,334][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,334][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,334][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:31:17,334][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:17,335][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:31:17,335][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:31:17,335][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:31:17,336][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:31:17,337][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:31:17,337][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:31:17,337][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:31:17,338][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:17,338][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:18,898][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:18,900][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:18,900][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:18,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:18,901][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:18,901][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:18,903][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:18,903][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:18,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:18,903][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:18,903][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:31:18,905][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:18,905][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:18,905][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:18,906][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:18,906][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:18,907][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:18,907][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:18,912][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:18,913][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:18,913][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:18,913][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:18,913][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:18,913][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:18,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:18,914][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:18,915][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:31:18,915][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:18,916][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:18,919][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f created and scheduled for execution +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:18,919][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:18,919][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:18,921][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:18,922][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:18,922][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:18,923][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:18,924][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:18,924][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:18,924][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:18,924][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=10 +[2026-02-19 15:31:18,924][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 10 +[2026-02-19 15:31:18,925][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:18,926][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:18,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:18,934][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,934][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:18,934][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:18,934][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f (source=None, level=None) +[2026-02-19 15:31:18,934][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,935][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:18,935][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:18,935][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,935][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,935][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:18,935][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:18,937][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,937][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:18,937][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:18,938][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,939][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:18,939][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:18,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:18,939][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:18,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:18,940][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:18,941][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:18,943][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:18,943][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,943][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:18,943][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:18,944][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:18,944][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:18,944][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:18,945][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:18,945][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:19,322][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:31:19,386][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:31:19,594][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:31:19,599][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:19,599][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:20,949][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:20,949][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:20,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:20,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:20,950][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:20,950][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:20,951][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:20,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:20,953][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:20,954][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:20,954][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:31:20,956][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:20,956][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:20,956][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:20,957][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:20,957][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:20,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:20,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:20,963][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:20,964][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:20,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:20,965][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:20,965][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:20,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:20,966][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:20,966][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:20,967][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:31:20,967][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:20,967][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:20,967][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:20,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:20,970][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 93a93a2a-b344-4624-b655-c8455f7b7045 created and scheduled for execution +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:20,970][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:20,971][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,971][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:20,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:20,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:20,971][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 93a93a2a-b344-4624-b655-c8455f7b7045 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:20,971][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,973][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:20,973][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:20,973][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:20,975][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:20,976][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:20,976][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:20,976][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,976][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:20,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=4 +[2026-02-19 15:31:20,977][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 4 +[2026-02-19 15:31:20,979][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:20,980][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:20,980][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:20,989][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,989][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:20,989][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:20,989][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 93a93a2a-b344-4624-b655-c8455f7b7045 (source=None, level=None) +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:20,990][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:20,990][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:20,991][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:20,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:20,991][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,992][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:20,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:20,993][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:20,993][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:20,993][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:20,994][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:20,994][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:20,995][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:20,996][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,996][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:20,996][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:20,996][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:20,996][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:20,996][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:20,997][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:20,997][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:21,467][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:31:21,482][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:31:21,504][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:31:21,530][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:31:21,599][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:21,603][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:21,603][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:21,712][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:31:21,730][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:31:21,730][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:31:21,784][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:31:21,819][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:31:22,922][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:31:22,929][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:31:22,929][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwlTktqRDEMu0vWXcR... +[2026-02-19 15:31:22,930][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:31:22,983][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:31:23,011][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:31:23,104][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:31:23,110][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:31:23,111][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:31:23,136][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:31:23,154][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:31:23,229][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:23,230][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:23,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:23,230][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:23,230][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:23,230][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:23,231][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:23,231][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:23,231][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:23,231][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:23,231][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:31:23,232][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:23,232][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:23,232][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:23,232][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:23,233][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:23,233][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:23,233][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:23,244][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:23,246][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:23,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:23,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:23,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:23,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:23,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:23,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:23,249][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:31:23,249][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:23,250][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:23,252][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task ec0b5b32-a505-47fd-aacc-7053842cba47 created and scheduled for execution +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:23,252][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:23,253][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,253][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:23,253][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:23,253][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:23,253][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task ec0b5b32-a505-47fd-aacc-7053842cba47 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:23,253][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:23,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,258][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:23,259][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:23,260][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:23,260][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:23,260][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:23,260][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:23,261][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,261][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:23,261][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:23,261][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 15:31:23,261][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 15:31:23,261][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:23,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:23,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:23,269][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:23,270][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task ec0b5b32-a505-47fd-aacc-7053842cba47 (source=None, level=None) +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:23,270][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:23,270][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:23,271][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,272][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:23,272][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:23,273][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,273][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:23,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:23,274][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:23,274][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:23,274][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:23,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:23,275][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:23,277][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:23,278][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,279][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:23,279][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:23,603][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:23,607][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:23,607][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:23,729][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:31:23,794][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:31:24,359][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:31:24,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:31:24,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqQzEMRfficQe... +[2026-02-19 15:31:24,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/4/?standalone=true +[2026-02-19 15:31:25,104][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:25,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:25,107][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:25,107][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:25,108][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:25,109][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:25,109][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:31:25,110][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:31:25,111][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:25,112][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:29,658][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:31:29,676][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:31:29,722][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:31:29,735][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:31:29,736][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:31:29,803][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:31:29,850][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:31:30,270][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:31:30,416][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:31:31,229][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:31:31,237][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:31:31,238][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkFqQzEMRO_idRe... +[2026-02-19 15:31:31,238][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:31:33,805][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:31:33,837][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:31:33,855][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:31:33,873][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:31:33,873][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:31:33,888][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:31:33,888][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:31:34,604][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:31:39,876][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/4/?standalone=true +[2026-02-19 15:31:39,903][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:31:39,920][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:31:39,933][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:31:39,933][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:31:39,940][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:31:39,941][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:31:40,849][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:31:49,628][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 15:31:49,633][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:49,701][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:31:49,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:31:49,702][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:31:49,702][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:31:49,706][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:31:49,706][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:31:49,706][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:31:49,707][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:31:49,707][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:31:49,707][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:31:49,707][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:31:50,010][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:31:50,010][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:31:50,011][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:31:50,011][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:31:50,011][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:31:50,142][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:31:50,152][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,152][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,152][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,152][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:31:50,183][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 15:31:50,186][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 15:31:50,187][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:31:50,187][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:31:50,187][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:31:50,187][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:31:50,187][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:31:50,188][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,188][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,188][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:31:50,188][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:31:50,792][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:50,792][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,792][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,793][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,793][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,793][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,793][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:31:50,794][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:31:50,795][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task ec0b5b32-a505-47fd-aacc-7053842cba47 completed successfully +[2026-02-19 15:31:50,795][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,795][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:50,795][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:50,795][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,796][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:50,796][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:50,796][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ec0b5b32-a505-47fd-aacc-7053842cba47 +[2026-02-19 15:31:50,798][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:50,798][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:50,798][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task ec0b5b32-a505-47fd-aacc-7053842cba47 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:31:50,798][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:31:50,798][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:31:52,957][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/auth/login +[2026-02-19 15:31:52,959][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:52,959][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.login][Entry] +[2026-02-19 15:31:52,959][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 15:31:52,959][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:52,961][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:52,961][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:53,142][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 15:31:53,144][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 15:31:53,144][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 15:31:53,144][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 15:31:53,144][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 15:31:53,145][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 15:31:53,145][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T12:31:53.145744][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 15:31:53,145][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 15:31:53,145][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 15:31:53,145][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 15:31:53,146][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 15:31:53,146][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/login +[2026-02-19 15:31:53,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:53,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:53,151][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:31:53,152][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:53,152][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:53,152][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:53,152][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:53,152][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:53,153][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:53,154][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:53,154][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:31:53,154][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:31:53,154][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:31:53,157][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:31:53,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:53,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:53,183][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 15:31:53,183][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:53,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:53,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:53,184][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:53,184][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:53,185][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:53,185][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 15:31:53,186][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 15:31:53,186][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 15:31:53,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:53,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:53,245][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:31:53,246][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:53,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:53,246][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:53,246][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:53,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:53,247][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:53,247][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:31:53,249][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:53,249][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:53,249][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:31:53,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:53,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:53,260][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:31:53,261][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:53,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:53,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:53,262][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:53,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:53,263][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:53,264][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:31:53,265][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:31:53,265][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:31:53,266][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:31:53,266][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:31:53,271][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:31:53,271][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:31:53,271][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:31:53,271][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:31:53,271][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:31:53,271][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:31:53,271][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:31:53,272][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:31:53,584][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:31:53,584][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:31:53,584][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:31:53,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:31:53,584][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:31:53,747][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:31:53,747][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,748][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:31:53,748][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,749][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,749][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,749][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,749][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:31:53,749][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,769][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:31:53,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:31:53,771][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:31:53,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:31:53,772][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:31:53,773][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:31:53,773][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:31:53,773][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:31:53,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:53,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:54,450][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:54,450][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:54,450][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:54,451][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:54,451][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:54,451][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:54,452][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:54,454][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:31:54,455][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:31:54,455][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:31:54,455][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:31:54,455][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:31:54,455][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:31:54,456][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:54,456][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:55,875][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 1780 +[2026-02-19 15:31:55,882][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:31:56,197][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:31:56,197][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:31:56,198][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:31:56,198][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:31:56,201][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:31:56,202][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:31:56,202][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:31:56,202][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:31:56,202][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:31:56,202][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:31:56,202][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:31:56,532][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:31:56,532][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:31:56,532][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:31:56,533][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:31:56,533][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:31:56,622][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:31:56,622][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:31:56,623][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:31:56,623][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:31:56,623][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:31:56,623][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:31:56,628][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:56,628][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,628][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,628][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:31:56,700][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1396 to 1024x1396 +[2026-02-19 15:31:56,707][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 124.32 KB +[2026-02-19 15:31:56,708][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:31:56,708][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:31:56,708][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:31:56,708][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:31:56,708][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:31:56,708][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:56,709][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:56,709][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:31:56,709][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:31:56,950][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:56,951][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:56,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:56,952][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:56,952][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:56,952][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:56,954][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:56,954][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:56,956][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:56,956][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:56,957][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_all_providers][Entry] +[2026-02-19 15:31:56,957][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:56,958][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:56,958][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:56,959][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:56,959][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:56,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:56,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:56,965][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:56,966][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:56,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:56,966][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:56,966][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:56,966][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:56,967][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:56,967][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:56,967][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [create_task][Entry] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:56,968][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,970][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:56,970][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:56,970][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 4eb92097-2c87-4ac6-9031-93b9decca1a4 created and scheduled for execution +[2026-02-19 15:31:56,970][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:56,970][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:56,970][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager._run_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:56,971][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 4eb92097-2c87-4ac6-9031-93b9decca1a4 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:56,971][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,972][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:56,972][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:56,973][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:56,974][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:56,974][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:56,974][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:56,974][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:56,975][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 15:31:56,975][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 15:31:56,976][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:56,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:56,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:56,984][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,984][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:56,984][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:56,984][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 (source=None, level=None) +[2026-02-19 15:31:56,984][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,984][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:56,985][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:56,985][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:56,986][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,987][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:56,987][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:56,987][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:56,987][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:56,987][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:56,989][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:56,989][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:56,991][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:56,992][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:56,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:56,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:57,287][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:57,287][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,287][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,289][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:31:57,290][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 93a93a2a-b344-4624-b655-c8455f7b7045 completed successfully +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:57,290][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,293][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:57,293][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:57,293][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=93a93a2a-b344-4624-b655-c8455f7b7045 +[2026-02-19 15:31:57,295][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:57,296][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:57,296][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 93a93a2a-b344-4624-b655-c8455f7b7045 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:31:57,296][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:31:57,296][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:31:57,432][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:31:57,486][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:31:57,611][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:31:57,615][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:57,616][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:58,395][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:58,397][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:58,398][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:58,398][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:58,398][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:58,398][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:58,400][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:58,401][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:58,402][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:58,402][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:58,402][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:31:58,403][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:58,403][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:58,404][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:58,405][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:58,405][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:58,405][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:58,406][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:58,412][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:58,413][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:58,413][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:58,414][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:58,414][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:58,414][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:58,415][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:58,415][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:58,416][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:31:58,416][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:58,417][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,420][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:58,421][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task fe971776-a713-4ddb-902f-f50d40290c88 created and scheduled for execution +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:58,421][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task fe971776-a713-4ddb-902f-f50d40290c88 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:58,421][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,423][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:58,423][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:58,423][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:58,424][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,425][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:58,426][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:58,427][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:58,427][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:58,427][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:58,427][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=2 +[2026-02-19 15:31:58,427][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 2 +[2026-02-19 15:31:58,428][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:58,429][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:58,430][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:58,438][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task fe971776-a713-4ddb-902f-f50d40290c88 (source=None, level=None) +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:58,438][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,438][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,439][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:58,439][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:58,439][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,439][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:58,440][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:58,440][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,441][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:58,441][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:58,441][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:58,442][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:58,442][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:58,443][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:58,443][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:58,444][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:58,445][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:58,446][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:58,447][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:58,893][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:31:58,947][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:31:59,293][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:31:59,303][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:31:59,332][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:31:59,341][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:31:59,341][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:31:59,383][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:31:59,428][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:31:59,616][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:31:59,621][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:31:59,621][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:31:59,839][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:31:59,841][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:59,841][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:59,842][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:59,842][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:59,842][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:59,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:59,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:59,845][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:31:59,845][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:31:59,845][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:31:59,847][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:31:59,847][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:31:59,848][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:31:59,849][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:31:59,849][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:31:59,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:59,850][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:59,856][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:31:59,857][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:59,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:59,858][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:59,858][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:59,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:59,859][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:59,859][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:59,860][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:31:59,861][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:31:59,862][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:59,863][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:59,867][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 920c3930-ecf7-4209-a8ec-8b2396f009df created and scheduled for execution +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:31:59,867][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,868][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:31:59,868][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:31:59,868][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:31:59,868][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 920c3930-ecf7-4209-a8ec-8b2396f009df for plugin 'Dashboard LLM Validation' +[2026-02-19 15:31:59,868][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,871][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:31:59,871][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:31:59,871][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:31:59,872][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:31:59,873][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:31:59,874][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:31:59,875][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:31:59,875][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:31:59,875][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,875][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:31:59,876][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=10 +[2026-02-19 15:31:59,876][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 10 +[2026-02-19 15:31:59,877][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:31:59,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:59,880][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:31:59,890][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,891][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:31:59,892][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 920c3930-ecf7-4209-a8ec-8b2396f009df (source=None, level=None) +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:31:59,892][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:31:59,892][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:31:59,893][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,893][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:59,893][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:59,894][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,895][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:31:59,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:31:59,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:31:59,896][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:31:59,896][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:31:59,898][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:31:59,899][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:31:59,903][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:31:59,903][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,903][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:31:59,903][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:31:59,903][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:31:59,904][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:31:59,904][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:31:59,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:31:59,907][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:32:00,033][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:32:00,064][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:32:00,253][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:32:00,266][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:32:00,266][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:32:00,296][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:32:00,304][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:32:00,305][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljk1qQzEMhO_idRe... +[2026-02-19 15:32:00,305][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:32:00,336][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:32:00,378][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:32:00,564][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:32:00,623][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:32:01,327][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:32:01,332][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:32:01,332][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqBDEMRO_idRa... +[2026-02-19 15:32:01,332][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:32:01,621][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:32:01,624][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:32:01,624][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:32:02,390][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:32:02,395][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:32:02,415][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:32:02,420][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:32:02,420][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:32:02,443][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:32:02,445][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:32:02,460][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:32:02,463][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:32:02,472][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:32:02,479][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:32:02,479][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:32:02,484][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:32:02,484][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:32:03,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:32:05,361][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:32:05,385][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:32:05,734][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:32:05,737][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:32:05,737][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkuKAzEMBe_idRa... +[2026-02-19 15:32:05,737][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:32:07,744][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:32:07,764][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:32:18,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 15:32:18,213][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:32:18,280][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:32:18,280][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:32:18,280][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:32:18,281][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:32:18,281][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:32:18,285][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:32:18,285][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:32:18,285][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:32:18,285][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:32:18,285][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:32:18,285][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:32:18,285][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:32:18,590][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:32:18,590][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:32:18,590][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:32:18,590][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:32:18,591][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:32:18,694][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:32:18,694][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:32:18,694][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:32:18,694][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:32:18,695][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:32:18,695][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:32:18,700][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:18,700][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:18,700][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:18,700][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:32:18,722][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 15:32:18,723][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 15:32:18,724][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:32:18,724][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:32:18,724][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:32:18,724][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:32:18,724][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:32:18,724][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:18,724][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:18,724][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:32:18,724][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:32:19,257][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:19,257][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,257][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:32:19,260][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 4eb92097-2c87-4ac6-9031-93b9decca1a4 completed successfully +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:19,260][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,262][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:32:19,262][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:32:19,262][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:32:19,264][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:32:19,264][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:32:19,265][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 4eb92097-2c87-4ac6-9031-93b9decca1a4 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:32:19,265][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:32:19,265][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:32:30,427][WARNING][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:32:30,436][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Chart content detected +[2026-02-19 15:32:30,437][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:32:30,441][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:32:30,441][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:32:31,447][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:32:43,893][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:32:43,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:32:43,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:32:43,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:32:43,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:32:43,895][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:32:43,895][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [list_tasks][Entry] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:32:43,897][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:32:43,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:32:43,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:32:46,456][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 0 +[2026-02-19 15:32:46,471][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:32:46,484][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 1 +[2026-02-19 15:32:46,502][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:32:46,517][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 2 +[2026-02-19 15:32:46,531][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:32:46,546][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 3 +[2026-02-19 15:32:46,561][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:32:46,613][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Calculated full height: 2303 +[2026-02-19 15:32:46,622][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [capture_dashboard][Exit] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:32:46,878][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:32:46,878][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:32:46,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:32:46,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:32:46,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:32:46,879][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:32:46,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:32:46,879][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:32:46,884][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:32:46,885][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:32:46,885][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:32:46,885][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:32:46,885][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:32:46,886][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:32:46,886][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:32:47,194][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:32:47,194][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:32:47,194][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:32:47,194][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:32:47,194][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:32:47,298][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:32:47,299][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:32:47,299][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:32:47,299][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:32:47,299][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:32:47,299][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:32:47,307][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:47,307][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:47,307][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:47,307][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:32:47,398][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1842 to 1024x1842 +[2026-02-19 15:32:47,409][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 108.21 KB +[2026-02-19 15:32:47,410][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:32:47,410][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:32:47,410][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:32:47,410][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:32:47,410][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:32:47,411][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:47,411][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:47,411][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:32:47,411][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:32:47,627][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:47,629][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:32:47,629][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:32:48,077][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:48,077][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,077][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,079][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,079][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,079][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,079][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:32:48,080][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f completed successfully +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:32:48,080][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,082][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:32:48,082][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:32:48,082][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f +[2026-02-19 15:32:48,085][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:32:48,085][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:32:48,085][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task ccaf3a9e-9493-4ee2-97f6-a550c1a7f02f execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:32:48,085][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:32:48,085][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:33:05,389][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:33:05,398][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:33:05,398][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:33:05,404][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:33:05,404][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:33:06,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:33:07,770][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:33:07,778][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:33:07,778][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:33:07,784][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:33:07,784][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:33:08,790][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:33:21,385][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 1956 +[2026-02-19 15:33:21,389][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:33:21,661][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:33:21,661][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:33:21,662][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:33:21,662][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:33:21,666][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:33:21,667][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:33:21,667][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:33:21,667][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:33:21,667][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:33:21,667][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:33:21,667][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:33:22,069][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:33:22,069][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:33:22,070][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:33:22,070][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:33:22,070][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:33:22,175][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:33:22,179][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:22,179][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:22,179][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:22,179][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:33:22,245][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1536 to 1024x1536 +[2026-02-19 15:33:22,251][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 122.13 KB +[2026-02-19 15:33:22,251][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:33:22,251][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:33:22,251][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:33:22,251][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:33:22,251][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:33:22,252][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:22,252][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:22,252][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:33:22,252][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:33:23,429][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:23,429][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:23,429][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:23,429][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:33:23,429][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:33:23,429][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,430][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,432][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,432][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:33:23,433][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task fe971776-a713-4ddb-902f-f50d40290c88 completed successfully +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:23,433][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,435][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:33:23,435][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:33:23,435][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 15:33:23,437][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:33:23,437][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:33:23,437][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task fe971776-a713-4ddb-902f-f50d40290c88 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:33:23,437][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:33:23,437][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:33:23,796][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 0 +[2026-02-19 15:33:23,806][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:33:23,815][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 1 +[2026-02-19 15:33:23,824][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:33:23,831][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 2 +[2026-02-19 15:33:23,839][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:33:23,847][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 3 +[2026-02-19 15:33:23,855][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:33:23,875][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 2303 +[2026-02-19 15:33:23,879][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:33:24,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:33:24,046][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:33:24,047][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:33:24,047][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:33:24,047][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:33:24,047][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:33:24,047][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:33:24,047][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:33:24,050][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:33:24,051][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:33:24,051][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:33:24,051][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:33:24,051][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:33:24,051][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:33:24,051][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:33:24,367][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:33:24,367][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:33:24,367][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:33:24,367][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:33:24,367][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:33:24,477][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:33:24,482][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:24,482][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:24,482][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:24,482][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:33:24,555][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1842 to 1024x1842 +[2026-02-19 15:33:24,560][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 108.21 KB +[2026-02-19 15:33:24,561][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:33:24,561][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:33:24,561][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:33:24,561][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:33:24,561][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:33:25,207][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:25,207][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,207][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:33:25,209][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 920c3930-ecf7-4209-a8ec-8b2396f009df completed successfully +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:33:25,209][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,211][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:33:25,211][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:33:25,211][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:33:25,213][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:33:25,213][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:33:25,213][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 920c3930-ecf7-4209-a8ec-8b2396f009df execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:33:25,213][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:33:25,213][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:34:23,534][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:34:23,535][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:34:23,535][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:34:23,535][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:34:23,535][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:34:23,535][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:34:23,536][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:34:23,536][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:34:23,537][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:34:23,537][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:34:23,537][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:34:23,537][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:34:23,538][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:34:23,538][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:34:23,538][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:34:23,543][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:34:23,544][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:34:23,544][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:34:23,848][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:34:23,848][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:34:23,848][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:34:23,849][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:34:23,849][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:34:24,032][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,032][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,032][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,033][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:34:24,033][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,038][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,038][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,038][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,038][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,039][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:34:24,039][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:34:24,040][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:34:24,040][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:34:24,040][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:34:24,040][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:34:24,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:34:24,040][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:34:24,040][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:34:24,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:34:24,041][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:34:24,041][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:34:24,041][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:34:24,042][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:36:47,850][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:36:47,850][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:36:47,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:36:47,851][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:36:47,851][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:36:47,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:36:47,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:36:47,854][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:36:47,855][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:36:47,855][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:36:47,855][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:36:47,856][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:36:47,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:36:47,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:36:47,888][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:36:47,889][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:36:47,889][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:36:47,890][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:36:47,890][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:36:47,890][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:36:47,891][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:36:47,891][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:36:47,893][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:36:47,893][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:36:47,894][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:36:47,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:36:47,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:36:47,925][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:36:47,931][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:36:47,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:36:47,936][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:36:47,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:36:47,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:36:47,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:36:47,939][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:36:47,943][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:36:47,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:36:47,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:36:47,944][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:36:47,952][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:36:47,953][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:36:47,953][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:36:47,953][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:36:47,953][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:36:47,953][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:36:47,953][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:36:47,953][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:36:47,953][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:36:47,954][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:36:47,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:36:47,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:36:47,954][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:36:48,300][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:36:48,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:36:48,300][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:36:48,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:36:48,300][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:36:48,488][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:36:48,488][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:36:48,489][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,489][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,489][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,490][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,490][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:36:48,491][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:36:48,496][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,497][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,497][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,497][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,497][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,497][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,498][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,498][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,498][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:36:48,498][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:36:48,498][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:36:48,498][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:36:48,499][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:36:48,499][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:36:48,499][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:36:48,499][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:36:48,500][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:36:48,500][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:10,953][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:41:10,954][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:10,955][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:10,956][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:10,956][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:10,956][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:10,957][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:10,957][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:10,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:41:10,958][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:41:10,958][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:41:10,958][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:41:10,959][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:41:10,959][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:41:10,959][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:41:10,959][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:41:10,959][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:10,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:10,966][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:41:10,968][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:10,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:10,968][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:10,968][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:10,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:10,969][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:10,969][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:41:10,971][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:41:10,972][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:41:10,974][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task f2df76b0-7777-4ef3-9632-bf263ec71804 created and scheduled for execution +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:41:10,974][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task f2df76b0-7777-4ef3-9632-bf263ec71804 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:41:10,974][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:41:10,976][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,977][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:41:10,978][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:10,979][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:41:10,979][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:41:10,979][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:10,979][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:10,980][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 15:41:10,980][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 15:41:10,980][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:41:10,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:10,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:10,990][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task f2df76b0-7777-4ef3-9632-bf263ec71804 (source=None, level=None) +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:10,990][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:10,990][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:10,991][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:10,991][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:10,992][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,993][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:10,993][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:10,994][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:10,994][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:10,994][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:10,995][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:10,995][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:10,996][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:10,997][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,997][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:10,997][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:10,997][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:10,997][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:10,997][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:10,998][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:10,998][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:11,433][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:41:11,485][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:41:11,660][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:11,662][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:41:11,663][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:41:12,545][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:41:12,546][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:12,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:12,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:12,547][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:12,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:12,548][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:12,548][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:12,549][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:41:12,550][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:41:12,550][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:41:12,551][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:41:12,551][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:41:12,551][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:41:12,552][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:41:12,552][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:41:12,553][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:12,554][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:12,562][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:41:12,564][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:12,566][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:12,566][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:12,567][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:12,567][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:12,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:12,570][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:12,573][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:41:12,574][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:41:12,576][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,579][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:41:12,579][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:41:12,580][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf created and scheduled for execution +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:41:12,580][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf for plugin 'Dashboard LLM Validation' +[2026-02-19 15:41:12,580][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,582][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,583][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:41:12,584][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:41:12,585][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:41:12,585][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:41:12,585][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,585][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:12,586][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=2 +[2026-02-19 15:41:12,586][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 2 +[2026-02-19 15:41:12,587][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:41:12,588][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:12,591][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:12,595][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf (source=None, level=None) +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:12,595][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:12,596][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,596][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,596][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:12,596][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:12,598][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,598][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:12,598][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:12,599][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,599][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:12,600][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:12,600][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:12,600][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:12,600][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:12,601][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:12,601][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:12,603][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:12,603][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,604][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:12,604][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:12,604][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:12,604][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:12,604][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:12,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:12,605][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:13,127][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:41:13,179][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:41:13,477][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:41:13,485][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:41:13,516][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:41:13,528][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:41:13,529][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:41:13,575][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:41:13,637][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:41:13,663][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:13,666][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:41:13,666][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:41:14,301][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:14,301][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:14,302][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:14,303][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:14,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:14,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:14,305][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:41:14,308][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:41:14,311][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:14,312][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:14,587][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:41:14,599][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:41:14,599][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljk1qRDEMg--SdRd... +[2026-02-19 15:41:14,599][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:41:15,069][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:41:15,093][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:41:15,134][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:41:15,143][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:41:15,144][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:41:15,193][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:41:15,233][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:15,885][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 920c3930-ecf7-4209-a8ec-8b2396f009df (source=None, level=None) +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:15,885][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,885][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,887][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:41:15,887][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:41:15,888][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:15,888][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:15,890][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,890][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:15,890][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:15,892][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,893][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:15,893][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:15,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:15,893][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:15,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:15,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:15,897][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:15,900][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:15,901][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:15,904][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:15,941][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,943][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:15,944][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:15,944][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:15,945][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:15,945][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:15,947][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:15,947][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:15,949][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:15,950][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:41:15,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:15,952][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:16,226][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:41:16,234][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:41:16,234][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljk1qRDEMg--SdRe... +[2026-02-19 15:41:16,234][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:41:16,511][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:41:16,545][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:41:16,565][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:41:16,585][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:41:16,585][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:41:16,606][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:41:16,607][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:41:17,323][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:41:21,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:41:21,281][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:41:22,518][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:22,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:22,520][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:22,520][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:22,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:22,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:22,522][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:41:22,524][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:41:22,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:22,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:23,711][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:23,712][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 (source=None, level=None) +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:23,712][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,712][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,715][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:41:23,715][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:41:23,715][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:23,715][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:23,717][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,717][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:23,718][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:23,719][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,720][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:23,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:23,721][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:23,721][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:23,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:23,722][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:23,722][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:23,723][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:23,723][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,723][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:23,724][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:23,724][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:23,724][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:23,724][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:23,726][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:23,755][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,756][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:23,757][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:23,757][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:23,757][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:23,757][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:23,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:23,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:23,759][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:23,760][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:41:23,762][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:23,762][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:25,967][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:25,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:25,968][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:25,968][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:25,968][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:25,969][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:25,969][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:41:25,971][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:41:25,972][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:25,972][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:26,814][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:26,815][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf (source=None, level=None) +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:26,815][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:26,815][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:26,816][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,816][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:26,816][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:26,818][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,819][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:26,819][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:26,820][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:26,820][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:26,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:26,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:26,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:26,825][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:26,826][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:41:26,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:26,827][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:28,892][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:28,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:28,892][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:28,892][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:28,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:28,893][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:28,893][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:41:28,894][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:41:28,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:28,895][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:30,605][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:41:30,606][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task f2df76b0-7777-4ef3-9632-bf263ec71804 (source=None, level=None) +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:41:30,606][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,606][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:41:30,607][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:41:30,608][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,608][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:30,608][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:30,609][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,610][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:30,611][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:30,612][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:30,612][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:30,612][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:30,614][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:30,614][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:30,615][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:30,616][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,616][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:30,616][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:30,616][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:30,616][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:30,616][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:30,617][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:30,618][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:41:32,349][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 15:41:32,358][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:41:32,459][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:41:32,460][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:41:32,460][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:32,460][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:41:32,461][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:41:32,461][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:41:32,461][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:41:32,467][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:41:32,467][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:41:32,467][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:41:32,467][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:41:32,468][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:41:32,468][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:41:32,468][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:41:32,468][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:41:32,468][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:41:32,770][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:41:32,771][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:41:32,771][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:41:32,771][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:41:32,771][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:41:32,877][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:41:32,878][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:41:32,878][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:41:32,878][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:41:32,878][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:41:32,878][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:41:32,883][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:32,884][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:32,884][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:32,884][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:41:32,908][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 15:41:32,911][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 15:41:32,911][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:41:32,911][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:41:32,911][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:41:32,912][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:41:32,912][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:41:32,913][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:32,913][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:32,913][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:41:32,913][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:41:33,656][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:41:33,656][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:41:33,656][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,657][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:41:33,659][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task f2df76b0-7777-4ef3-9632-bf263ec71804 completed successfully +[2026-02-19 15:41:33,659][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,660][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:41:33,660][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:41:33,660][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,663][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:41:33,663][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:41:33,663][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,665][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:41:33,665][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:41:33,665][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task f2df76b0-7777-4ef3-9632-bf263ec71804 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:41:33,665][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:41:33,665][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:41:33,687][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,688][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:41:33,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:41:33,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:41:33,689][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:41:33,689][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:41:33,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:41:33,690][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:41:33,692][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:41:33,693][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,693][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:41:33,693][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:41:33,693][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:41:33,693][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:41:33,693][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:41:33,694][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:41:33,694][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:42:21,290][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:42:21,298][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:42:21,298][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:42:21,304][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:42:21,304][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:42:22,278][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:42:37,302][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 1956 +[2026-02-19 15:42:37,305][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:42:37,535][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:42:37,535][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:42:37,536][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:42:37,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:42:37,536][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:42:37,536][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:42:37,536][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:42:37,536][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:42:37,539][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:42:37,539][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:42:37,540][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:42:37,540][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:42:37,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:42:37,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:42:37,540][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:42:37,846][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:42:37,846][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:42:37,846][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:42:37,846][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:42:37,846][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:42:37,962][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:42:37,963][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:42:37,963][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:42:37,963][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:42:37,963][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:42:37,963][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:42:37,968][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:37,968][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:37,968][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:37,968][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:42:38,025][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1536 to 1024x1536 +[2026-02-19 15:42:38,030][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 121.20 KB +[2026-02-19 15:42:38,030][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:42:38,030][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:42:38,030][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:42:38,030][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:42:38,030][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:42:38,031][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:42:38,031][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:42:38,031][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:42:38,633][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:42:38,634][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,634][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,636][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:42:38,637][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf completed successfully +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:42:38,637][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,639][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:42:38,640][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:42:38,640][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:42:38,642][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:42:38,642][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:42:38,642][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:42:38,642][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:42:38,642][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:43:16,913][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:16,914][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:16,914][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:16,915][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:16,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:16,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:16,915][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:16,916][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:43:16,917][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:43:16,917][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:43:16,917][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:43:16,917][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:43:16,917][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:43:16,918][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:16,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:18,201][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,201][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:43:18,201][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:43:18,201][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task f2df76b0-7777-4ef3-9632-bf263ec71804 (source=None, level=None) +[2026-02-19 15:43:18,201][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:43:18,202][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:43:18,202][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:43:18,203][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:43:18,203][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:43:18,204][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:18,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:18,205][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,206][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:18,206][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:18,207][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:18,207][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:18,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:18,209][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:18,209][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:18,211][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:18,211][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:18,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:18,239][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,240][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:18,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:18,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:18,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:18,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:18,242][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:18,242][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:18,244][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:18,244][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,244][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:18,244][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:18,244][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:18,245][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:18,245][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/f2df76b0-7777-4ef3-9632-bf263ec71804 +[2026-02-19 15:43:18,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:18,248][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:28,875][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:43:28,876][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:28,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:28,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:28,879][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:28,879][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:28,881][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:28,881][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:28,881][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:43:28,882][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:43:28,882][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:43:28,885][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:43:28,888][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:28,888][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:28,914][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:43:28,915][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:28,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:28,916][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:28,916][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:28,916][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:28,918][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:28,918][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:28,922][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:43:28,923][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:43:28,923][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:43:28,923][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:43:28,923][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:43:28,924][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:43:28,924][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:43:28,924][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:43:28,928][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:28,930][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:28,966][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:43:28,970][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:28,971][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:28,971][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:28,971][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:28,972][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:28,974][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:28,974][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:28,985][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:43:28,986][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:43:28,986][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:43:28,986][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:43:28,986][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:43:28,986][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:43:28,987][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:43:28,987][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:43:28,988][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:43:28,989][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:43:28,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:43:28,991][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:43:28,992][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:43:28,993][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:43:28,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:43:28,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:43:28,994][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:43:28,994][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:43:28,995][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:43:29,009][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:43:29,009][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:43:29,010][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:43:29,010][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:43:29,010][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:43:29,010][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:43:29,011][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:43:29,012][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:43:29,012][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:43:29,013][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:43:29,014][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:43:29,015][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:43:29,015][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:43:29,015][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:43:29,016][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:43:29,017][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:43:29,018][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:43:29,018][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:43:29,018][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:43:29,019][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:43:29,019][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:43:29,338][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:43:29,338][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:43:29,338][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:43:29,338][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:43:29,338][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:43:29,528][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:43:29,528][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:43:29,528][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:43:29,529][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,529][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,529][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,529][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,530][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,530][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,530][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,531][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:43:29,532][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:43:29,539][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,539][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,539][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,539][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,539][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:43:29,539][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,540][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,540][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,540][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,540][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,540][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,541][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,541][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:43:29,541][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:43:29,541][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:43:29,542][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:43:29,542][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:43:29,542][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:43:29,545][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:43:29,545][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:43:29,545][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:43:29,546][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:43:29,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:29,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:42,173][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:42,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:42,174][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:42,174][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:42,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:42,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:42,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:43:42,175][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:43:42,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:42,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:43:43,165][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 (source=None, level=None) +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:43:43,165][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,165][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,167][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:43:43,167][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:43:43,167][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:43:43,167][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:43:43,170][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,170][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:43,170][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:43,171][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,172][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:43,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:43,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:43,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:43,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:43,176][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:43,176][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:43,178][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:43,179][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,179][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:43,179][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:43,179][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:43,179][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:43,180][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,181][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:43,181][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:43,219][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,220][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:43,220][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:43,220][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:43,221][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:43,221][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:43,222][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:43,223][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:43,225][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:43,225][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,225][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:43,225][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:43,225][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:43,226][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:43,226][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:43:43,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:43,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:53,140][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:53,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:53,140][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:53,141][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:53,141][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:53,141][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:53,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:43:53,143][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:43:53,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:53,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:54,932][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:54,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:54,933][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:54,933][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:54,933][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:54,935][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:54,935][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:43:54,936][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:43:54,938][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:54,939][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:55,470][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,470][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:43:55,470][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:43:55,470][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf (source=None, level=None) +[2026-02-19 15:43:55,470][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,471][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:43:55,471][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:43:55,471][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,471][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,471][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,473][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:43:55,473][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:43:55,473][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:43:55,473][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:43:55,474][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,474][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:55,475][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:55,475][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,476][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:55,476][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:55,477][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:55,477][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:55,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:55,478][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:55,478][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:55,480][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:55,481][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,481][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:55,481][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:55,481][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:55,481][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:55,482][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,482][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:55,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:43:55,508][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,509][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:43:55,509][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:43:55,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:43:55,510][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:43:55,510][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:43:55,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:43:55,512][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:43:55,513][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:43:55,514][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:43:55,516][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:43:55,516][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:14,991][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/auth/login +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.login][Entry] +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:14,993][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:15,165][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 15:44:15,167][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T12:44:15.167809][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 15:44:15,167][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 15:44:15,168][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 15:44:15,168][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/login +[2026-02-19 15:44:15,169][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:15,169][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:15,174][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:44:15,175][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:15,175][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:15,175][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:15,175][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:15,175][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:15,176][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:15,176][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:15,176][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:44:15,176][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:44:15,176][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:44:15,177][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:44:15,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:15,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:15,196][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 15:44:15,197][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:15,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:15,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:15,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:15,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:15,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:15,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 15:44:15,199][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 15:44:15,199][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 15:44:15,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:15,200][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:15,252][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:44:15,252][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:15,253][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:15,253][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:15,253][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:15,253][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:15,254][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:15,255][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:15,257][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:44:15,257][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:44:15,257][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:44:15,258][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:44:15,258][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:44:15,258][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:44:15,258][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:44:15,258][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:44:15,259][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:15,259][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:15,269][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:44:15,270][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:15,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:15,270][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:15,270][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:15,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:15,271][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:15,271][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:44:15,272][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:44:15,272][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:44:15,272][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:44:15,273][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:44:15,273][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:44:15,273][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:44:15,277][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:44:15,277][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:44:15,277][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:44:15,277][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:44:15,277][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:44:15,277][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:44:15,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:44:15,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:44:15,590][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:44:15,590][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:44:15,590][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:44:15,590][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:44:15,590][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:44:15,761][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:44:15,762][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,762][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,762][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,763][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,763][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,763][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,763][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,764][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:44:15,764][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:44:15,769][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,769][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,769][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:44:15,769][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,770][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,770][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,771][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,771][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:44:15,772][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:44:15,772][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:44:15,772][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:44:15,773][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:44:15,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:44:15,774][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:44:15,774][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:44:15,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:15,776][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:16,934][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:44:16,936][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:16,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:16,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:16,937][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:16,937][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:16,938][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:16,939][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:16,940][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:44:16,940][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:44:16,940][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:44:16,941][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:44:16,941][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:44:16,941][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:44:16,942][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:44:16,942][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:44:16,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:16,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:16,950][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:44:16,950][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:16,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:16,951][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:16,951][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:16,951][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:16,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:16,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:44:16,953][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,955][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:44:16,955][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:44:16,956][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 created and scheduled for execution +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:44:16,956][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:44:16,956][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,958][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:44:16,959][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:44:16,961][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:44:16,962][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:16,962][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:16,962][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:44:16,962][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:44:16,963][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:16,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 15:44:16,963][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 15:44:16,964][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:44:16,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:16,969][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:16,972][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,972][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:44:16,972][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:44:16,973][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 (source=None, level=None) +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:44:16,973][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:44:16,973][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:44:16,974][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,974][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:16,975][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:16,978][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,979][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:16,979][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:16,979][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:16,980][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:16,980][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:16,981][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:16,981][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:44:16,983][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:44:16,984][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:16,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:16,985][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:17,518][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:44:17,576][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:44:17,677][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:17,679][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:44:17,679][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:44:18,191][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:44:18,194][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:18,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:18,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:18,194][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:18,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:18,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:18,197][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:18,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:44:18,198][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:44:18,198][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:44:18,199][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:44:18,199][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:44:18,199][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:44:18,201][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:44:18,201][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:44:18,201][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:18,201][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:18,207][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:44:18,208][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:18,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:18,210][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:18,210][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:18,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:18,212][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:18,212][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:18,213][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:44:18,213][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:44:18,213][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:18,213][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:44:18,214][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,216][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:44:18,217][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:44:18,217][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 created and scheduled for execution +[2026-02-19 15:44:18,217][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:44:18,217][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:44:18,217][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:44:18,217][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:44:18,218][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,218][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:44:18,218][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:44:18,218][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:44:18,218][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:44:18,218][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,220][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:44:18,220][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:44:18,220][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,220][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:44:18,221][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:44:18,222][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,223][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:44:18,224][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:44:18,224][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:44:18,224][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:44:18,224][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:44:18,225][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:44:18,225][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,225][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:18,225][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:18,225][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=2 +[2026-02-19 15:44:18,225][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 2 +[2026-02-19 15:44:18,226][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:44:18,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:18,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:18,234][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:44:18,235][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 (source=None, level=None) +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:44:18,235][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:44:18,235][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:44:18,236][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,236][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:18,236][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:18,237][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,238][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:18,239][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:18,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:18,240][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:18,240][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:18,241][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:18,241][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:18,242][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:44:18,242][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,243][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:18,243][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:18,243][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:44:18,243][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:44:18,243][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:18,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:18,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:18,708][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:44:18,717][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:44:18,736][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:44:18,771][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:44:18,882][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:44:18,952][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:44:18,952][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:44:19,009][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:44:19,043][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:44:19,679][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:44:19,683][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:44:19,683][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:44:19,854][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:44:19,872][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:44:20,027][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:44:20,065][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:44:20,073][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:44:20,074][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:44:20,081][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:44:20,081][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqBEEMQ-9S6yz... +[2026-02-19 15:44:20,081][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:44:20,152][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:44:20,201][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:44:21,188][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:44:21,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:44:21,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljk1qRDEMg--SdRd... +[2026-02-19 15:44:21,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:44:22,144][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:44:22,167][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:44:22,179][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:44:22,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:44:22,190][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:44:22,197][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:44:22,197][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:44:22,298][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:22,298][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:22,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:22,298][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:22,298][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:22,299][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:22,299][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:22,300][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:44:22,300][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:44:22,301][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:44:22,301][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:44:22,301][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:44:22,301][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:44:22,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:22,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:22,904][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:44:23,286][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:44:23,287][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf (source=None, level=None) +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:44:23,287][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,287][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,290][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:44:23,291][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:44:23,291][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:44:23,291][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:44:23,292][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,293][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:23,293][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:23,294][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,296][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:23,296][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:23,297][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:23,297][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:23,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:23,298][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:23,298][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:44:23,301][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:44:23,302][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:23,303][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:23,336][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,338][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:44:23,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:44:23,339][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:44:23,339][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:44:23,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:44:23,340][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:44:23,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:44:23,344][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:44:23,345][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,345][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:44:23,345][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:44:23,345][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:44:23,345][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:44:23,346][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/359fb80a-fd2c-4d53-b319-df6bc4f1d3bf +[2026-02-19 15:44:23,347][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:44:23,347][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:44:25,381][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/2/?standalone=true +[2026-02-19 15:44:25,420][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:44:37,955][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 15:44:37,966][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:44:38,124][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:44:38,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:44:38,125][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:44:38,125][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:44:38,134][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:44:38,134][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:44:38,134][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:44:38,135][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:44:38,135][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:44:38,135][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:44:38,135][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:44:38,443][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:44:38,443][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:44:38,443][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:44:38,443][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:44:38,443][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:44:38,548][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:44:38,548][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:44:38,548][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:44:38,549][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:44:38,549][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:44:38,549][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:44:38,554][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:38,554][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:38,554][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:38,555][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:44:38,581][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 15:44:38,587][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 15:44:38,589][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:44:38,589][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:44:38,589][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:44:38,589][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:44:38,589][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:44:38,590][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:38,591][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:38,591][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:44:38,591][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:44:39,685][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:39,689][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:44:39,689][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:44:40,797][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:44:40,797][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,797][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,798][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,798][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,798][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,802][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,802][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,802][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,802][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:44:40,803][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 completed successfully +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:44:40,803][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,808][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:44:40,808][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:44:40,808][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 +[2026-02-19 15:44:40,811][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:44:40,812][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:44:40,812][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 17d67946-35d2-4e33-8a6e-a6c99dc9fdd5 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:44:40,812][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:44:40,812][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:45:25,431][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:45:25,451][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:45:25,451][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:45:25,465][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:45:25,466][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:45:26,534][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:45:30,771][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:45:30,771][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:30,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:30,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:30,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:30,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:30,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:30,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:30,775][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:45:30,775][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:45:30,775][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:45:30,776][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:45:30,776][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:45:30,776][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:45:30,777][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:45:30,777][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:45:30,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:30,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:30,784][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:45:30,784][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:30,785][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:30,786][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:45:30,786][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:45:30,953][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:30,953][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:45:30,954][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:45:30,957][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 created and scheduled for execution +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:45:30,957][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:45:30,957][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,959][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:45:30,960][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,961][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:30,962][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:45:30,962][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:45:30,962][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:45:30,962][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:45:30,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:30,963][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:30,963][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=9 +[2026-02-19 15:45:30,963][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 9 +[2026-02-19 15:45:30,970][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:45:30,971][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:30,971][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:30,980][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:45:30,981][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 (source=None, level=None) +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:45:30,981][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,981][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:45:30,982][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:45:30,982][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,982][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:45:30,983][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:45:30,983][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,985][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:30,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:30,986][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:30,986][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:30,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:30,987][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:30,987][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:45:30,989][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:45:30,990][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:30,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:30,992][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:31,461][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:45:31,531][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:45:31,693][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:45:31,698][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:45:31,698][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:45:33,582][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:45:33,604][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:45:33,632][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:45:33,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:45:33,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:45:33,681][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:45:33,710][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:45:35,637][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:45:35,638][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:35,638][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:35,638][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:35,638][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:35,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:35,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:35,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:35,640][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:45:35,640][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:45:35,641][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:45:35,641][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:45:35,641][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:45:35,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:45:35,642][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:45:35,642][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:45:35,642][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:35,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:35,647][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:45:35,648][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:35,648][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:35,649][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:35,649][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:35,649][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:35,650][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:35,650][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:35,652][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:45:35,653][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:45:35,654][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:45:35,656][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task b3b737f7-ef58-41a0-943c-800c1a47b4fe created and scheduled for execution +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:45:35,656][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:45:35,657][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:45:35,657][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task b3b737f7-ef58-41a0-943c-800c1a47b4fe for plugin 'Dashboard LLM Validation' +[2026-02-19 15:45:35,657][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,658][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:45:35,658][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:45:35,659][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:45:35,660][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:35,660][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:45:35,661][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:45:35,662][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:45:35,662][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:45:35,662][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,662][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:35,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=9 +[2026-02-19 15:45:35,663][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 9 +[2026-02-19 15:45:35,664][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:45:35,664][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:35,665][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:35,672][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,672][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:45:35,672][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:45:35,673][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task b3b737f7-ef58-41a0-943c-800c1a47b4fe (source=None, level=None) +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:45:35,673][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:45:35,673][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:45:35,674][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,674][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:45:35,674][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:45:35,674][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,675][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:45:35,676][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:45:35,677][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:45:35,677][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:45:35,677][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:45:35,678][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:45:35,678][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:45:35,679][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:45:35,680][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,680][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:45:35,680][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:45:35,680][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:45:35,680][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:45:35,680][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,681][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:45:35,681][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:45:35,699][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:45:35,702][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:45:35,702][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:45:36,093][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:45:36,160][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:45:36,176][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:45:36,183][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:45:36,184][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkuKAzEMBe_idRa... +[2026-02-19 15:45:36,184][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 15:45:37,639][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:45:37,655][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:45:37,800][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:45:37,818][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 0 elements found +[2026-02-19 15:45:37,834][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[placeholder*="Username"]': 0 elements found +[2026-02-19 15:45:37,934][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[type="text"]': 1 elements found +[2026-02-19 15:45:37,935][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input[type="text"] +[2026-02-19 15:45:38,000][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:45:38,044][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:45:39,924][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 15:45:39,944][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:45:39,956][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:45:39,965][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:45:39,965][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:45:39,971][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:45:39,971][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:45:40,594][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:45:40,596][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:45:40,596][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkuKAzEMRO_idRa... +[2026-02-19 15:45:40,596][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 15:45:40,677][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:45:41,562][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 1956 +[2026-02-19 15:45:41,571][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:45:41,823][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:45:41,823][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:45:41,824][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:45:41,824][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:45:41,824][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:45:41,828][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:45:41,828][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:45:41,829][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:45:41,829][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:45:41,829][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:45:41,829][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:45:41,829][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:45:42,139][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:45:42,139][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:45:42,139][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:45:42,139][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:45:42,139][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:45:42,247][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:45:42,251][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,251][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,251][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,251][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:45:42,314][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1536 to 1024x1536 +[2026-02-19 15:45:42,319][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 122.27 KB +[2026-02-19 15:45:42,320][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:45:42,320][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:45:42,320][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:45:42,320][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:45:42,320][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:45:42,321][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,321][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,321][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:45:42,321][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:45:42,520][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-19 15:45:42,545][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:45:42,558][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:45:42,575][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Chart content detected +[2026-02-19 15:45:42,575][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:45:42,580][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:45:42,580][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:45:42,919][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:45:42,919][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:45:42,919][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:45:42,919][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:45:42,919][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:45:42,919][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,920][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,921][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:45:42,922][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 completed successfully +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:45:42,922][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,924][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:45:42,924][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:45:42,924][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:45:42,926][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:45:42,926][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:45:42,926][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:45:42,926][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:45:42,926][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:45:43,285][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:45:55,682][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 0 +[2026-02-19 15:45:55,692][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:55,700][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 15:45:55,708][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:55,716][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 15:45:55,728][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:55,735][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 15:45:55,744][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:55,756][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:45:58,291][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 0 +[2026-02-19 15:45:58,301][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:58,310][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 15:45:58,318][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:58,326][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 15:45:58,333][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:58,342][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 15:45:58,350][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-19 15:45:58,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:45:59,053][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:01,239][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 15:46:01,689][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:02,413][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:03,908][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-19 15:46:04,614][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 15:46:05,083][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:05,801][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:07,276][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-19 15:46:07,978][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 15:46:08,442][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-19 15:46:09,136][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 983 +[2026-02-19 15:46:09,141][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:09,273][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:09,273][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:46:09,273][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:46:09,277][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:46:09,278][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:46:09,278][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:46:09,278][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:46:09,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:46:09,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:46:09,279][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:46:09,582][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:46:09,582][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:46:09,582][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:46:09,582][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:46:09,582][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:46:09,688][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:46:09,692][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,692][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:09,692][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:09,692][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:46:09,704][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,706][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:46:09,706][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:46:09,723][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x786 to 1024x786 +[2026-02-19 15:46:09,726][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 58.34 KB +[2026-02-19 15:46:09,726][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:46:09,727][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:09,727][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:46:09,727][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:46:09,727][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:46:09,727][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,727][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:09,727][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:46:09,727][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:46:10,310][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:10,310][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:10,310][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,311][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:46:10,313][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 completed successfully +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:10,313][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,315][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:46:10,316][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:46:10,316][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=69b352cd-c5a4-42fd-a767-2b62c2a863d7 +[2026-02-19 15:46:10,318][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:46:10,318][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:46:10,318][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 69b352cd-c5a4-42fd-a767-2b62c2a863d7 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:46:10,318][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:46:10,318][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:46:10,668][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-19 15:46:11,840][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 983 +[2026-02-19 15:46:11,845][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:11,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:11,980][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:46:11,980][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:46:11,981][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:46:11,984][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:46:11,985][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:46:11,985][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:46:11,985][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:46:11,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:46:11,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:46:11,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:46:12,347][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:46:12,347][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:46:12,347][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:46:12,347][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:46:12,347][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:46:12,465][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:46:12,465][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:46:12,465][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:46:12,465][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:12,465][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:46:12,466][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:46:12,469][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:12,469][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:12,469][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:12,469][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:46:12,498][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x786 to 1024x786 +[2026-02-19 15:46:12,501][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 58.34 KB +[2026-02-19 15:46:12,501][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:46:12,501][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:12,501][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:46:12,501][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:46:12,501][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:46:13,158][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:13,158][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,158][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,159][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,159][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,159][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,159][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:46:13,160][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:46:13,160][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b3b737f7-ef58-41a0-943c-800c1a47b4fe completed successfully +[2026-02-19 15:46:13,161][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,161][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:13,161][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:13,161][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,162][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:46:13,162][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:46:13,162][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:46:13,165][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:46:13,165][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:46:13,165][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task b3b737f7-ef58-41a0-943c-800c1a47b4fe execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:46:13,165][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:46:13,165][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:46:21,475][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:46:21,476][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:21,476][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:21,477][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:21,477][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:21,477][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:21,477][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:21,477][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:21,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:46:21,478][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:46:21,478][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:46:21,478][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:46:21,478][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:46:21,479][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:46:21,479][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:46:21,479][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:46:21,480][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:21,480][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:21,489][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:46:21,489][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:21,490][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:21,491][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:46:21,491][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:46:21,492][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,495][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:46:21,495][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:46:21,495][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task d0d1672b-8717-4a05-994b-500137aafebd created and scheduled for execution +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:46:21,496][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task d0d1672b-8717-4a05-994b-500137aafebd for plugin 'Dashboard LLM Validation' +[2026-02-19 15:46:21,496][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:46:21,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,500][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:46:21,501][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:46:21,502][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:46:21,503][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:46:21,503][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:46:21,503][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:21,503][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=13 +[2026-02-19 15:46:21,503][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 13 +[2026-02-19 15:46:21,504][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:46:21,505][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:21,509][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:46:21,514][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task d0d1672b-8717-4a05-994b-500137aafebd (source=None, level=None) +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:46:21,514][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,514][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,515][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:46:21,515][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:46:21,515][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,515][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:46:21,515][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:46:21,516][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,517][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:21,517][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:21,518][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:21,518][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:21,518][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:21,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:21,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:46:21,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:46:21,525][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:21,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:21,707][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:21,715][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:46:21,715][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:46:22,021][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:46:22,101][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:46:23,552][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:46:23,575][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:46:23,748][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:46:23,761][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:46:23,761][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:46:23,822][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:46:23,859][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:46:25,732][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:25,732][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:25,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:25,733][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:25,733][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:25,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:25,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:25,737][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:46:25,738][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:46:25,738][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:46:25,738][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:46:25,738][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:46:25,738][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:46:25,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:25,740][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:26,305][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:46:26,319][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:46:26,319][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkFqRDEMQ--SdRd... +[2026-02-19 15:46:26,319][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:46:28,606][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/13/?standalone=true +[2026-02-19 15:46:28,629][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:46:28,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-19 15:46:28,652][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:46:28,652][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:46:28,660][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:46:28,661][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:46:29,367][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:46:30,972][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:46:30,973][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:30,973][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:30,974][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:30,974][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:30,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:30,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:30,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:30,976][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:46:30,976][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:46:30,976][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:46:30,978][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:46:30,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:30,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:31,009][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/users +[2026-02-19 15:46:31,013][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/roles +[2026-02-19 15:46:31,013][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:31,016][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:31,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:31,017][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:31,018][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:31,018][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:31,018][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:31,018][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:31,020][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:31,020][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:31,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:31,021][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:31,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:31,025][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:31,025][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_users][Entry] +[2026-02-19 15:46:31,028][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] +[2026-02-19 15:46:31,028][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] +[2026-02-19 15:46:31,029][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/users +[2026-02-19 15:46:31,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:31,031][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:31,033][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_roles][Entry] +[2026-02-19 15:46:31,034][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] +[2026-02-19 15:46:31,034][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] +[2026-02-19 15:46:31,036][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/roles +[2026-02-19 15:46:31,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:31,037][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:33,187][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:46:33,188][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:33,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:33,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:33,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:33,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:33,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:33,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:33,190][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:46:33,190][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:46:33,190][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:46:33,191][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:46:33,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:33,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:33,208][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments +[2026-02-19 15:46:33,209][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/storage/files +[2026-02-19 15:46:33,210][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:33,210][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:33,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:33,213][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:33,213][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:33,213][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:33,213][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_files][Entry] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 15:46:33,215][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 15:46:33,216][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 15:46:33,216][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 15:46:33,216][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 15:46:33,216][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 15:46:33,216][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 15:46:33,216][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:33,217][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:33,218][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/storage/files +[2026-02-19 15:46:33,218][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments +[2026-02-19 15:46:33,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:33,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:33,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:33,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:35,332][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:46:35,333][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:35,333][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:35,334][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:35,334][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:35,334][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:35,335][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:35,335][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:35,335][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:46:35,335][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:46:35,335][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:46:35,336][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:46:35,336][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:35,336][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:35,351][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:35,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:35,353][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:35,353][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:46:35,354][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:46:35,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:35,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:35,354][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:46:35,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:35,354][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:35,354][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:46:35,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:35,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:35,361][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/datasets +[2026-02-19 15:46:35,363][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:35,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:35,363][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:35,363][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:35,363][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:35,364][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:35,364][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:35,366][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 15:46:35,367][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 15:46:35,367][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:46:35,367][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:46:35,371][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:46:35,372][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:46:35,372][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 15:46:35,372][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:46:35,372][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:46:35,373][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:46:35,373][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:46:35,373][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:46:35,373][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:46:35,689][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:46:35,689][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:46:35,689][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:46:35,689][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:46:35,689][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:46:35,796][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 15:46:35,796][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 15:46:35,797][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 15:46:35,797][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 15:46:35,797][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 15:46:35,798][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 15:46:35,798][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 15:46:35,798][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 15:46:35,798][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/datasets +[2026-02-19 15:46:35,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:35,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:36,339][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:46:36,339][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:36,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:36,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:36,340][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:36,340][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:36,341][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:36,342][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:36,342][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:46:36,342][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:46:36,342][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:46:36,343][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:46:36,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:36,345][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:36,358][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:46:36,359][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:36,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:36,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:36,359][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:36,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:36,360][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:36,360][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:36,363][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:46:36,363][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:46:36,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:36,363][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:36,364][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:46:36,364][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:36,364][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:36,364][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:46:36,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:36,365][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:36,371][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:46:36,372][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:46:36,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:46:36,373][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:46:36,373][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:46:36,373][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:46:36,374][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:46:36,374][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:46:36,375][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:46:36,376][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:46:36,376][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:46:36,376][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:46:36,381][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:46:36,381][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:46:36,381][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:46:36,382][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:46:36,382][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:46:36,382][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:46:36,382][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:46:36,382][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:46:36,736][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:46:36,736][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:46:36,736][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:46:36,737][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:46:36,737][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:46:36,915][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,915][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:46:36,915][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,916][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,916][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,916][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,916][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,917][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:46:36,917][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:46:36,921][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,921][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,921][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,921][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,921][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,922][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,922][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,922][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,922][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:46:36,923][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:46:36,923][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:46:36,923][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:46:36,924][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:46:36,924][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:46:36,925][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:46:36,925][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:46:36,925][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:46:36,925][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:46:36,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:46:36,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:46:44,384][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 755 +[2026-02-19 15:46:44,387][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:44,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:46:44,446][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:46:44,446][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:46:44,450][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:46:44,450][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:46:44,450][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:46:44,450][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:46:44,450][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:46:44,450][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:46:44,451][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:46:44,779][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:46:44,779][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:46:44,779][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:46:44,779][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:46:44,780][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:46:44,887][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:46:44,887][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:46:44,887][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:46:44,887][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:44,888][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:46:44,888][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:46:44,893][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:44,893][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:44,893][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:44,893][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:46:44,915][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x576 to 1024x576 +[2026-02-19 15:46:44,917][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 16.04 KB +[2026-02-19 15:46:44,917][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:46:44,917][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:46:44,917][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:46:44,917][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:46:44,917][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:46:44,918][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:44,918][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:44,918][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:46:44,918][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:46:45,525][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:45,525][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,525][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,526][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,527][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,527][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:46:45,528][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task d0d1672b-8717-4a05-994b-500137aafebd completed successfully +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:46:45,528][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,530][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:46:45,530][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:46:45,530][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:46:45,531][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:46:45,531][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:46:45,531][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task d0d1672b-8717-4a05-994b-500137aafebd execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:46:45,531][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:46:45,531][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 15:47:49,150][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:47:49,150][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:47:49,152][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:47:49,153][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:47:49,153][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:47:49,153][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:47:49,154][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:47:49,155][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:47:49,155][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:47:49,156][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:47:49,156][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:47:49,158][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:47:49,159][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:47:49,160][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:47:49,190][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:47:49,190][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:47:49,191][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:47:49,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:47:49,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:47:49,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:47:49,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:47:49,194][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:47:49,195][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:47:49,195][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:47:49,196][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:47:49,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:47:49,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:47:49,207][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:47:49,208][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:47:49,208][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:47:49,209][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:47:49,209][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:47:49,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:47:49,211][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:47:49,211][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:47:49,215][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:47:49,215][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:47:49,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:47:49,215][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:47:49,215][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:47:49,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:47:49,216][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:47:49,216][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:47:49,222][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:47:49,223][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:47:49,223][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:47:49,223][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:47:49,223][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:47:49,223][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:47:49,224][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:47:49,224][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:47:49,533][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:47:49,533][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:47:49,533][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:47:49,533][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:47:49,534][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:47:49,709][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,709][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,709][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,710][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,710][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:47:49,711][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:47:49,717][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,717][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,717][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,717][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,718][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:47:49,718][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:47:49,719][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:47:49,719][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:47:49,719][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:47:49,721][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:47:49,721][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:47:49,721][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:47:49,721][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:47:49,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:47:49,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:25,918][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 15:48:25,918][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:25,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:25,919][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:25,919][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:25,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:25,921][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:25,922][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:25,922][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 15:48:25,922][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 15:48:25,922][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 15:48:25,923][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 15:48:25,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:25,924][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:25,940][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 15:48:25,941][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:25,941][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:25,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:25,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:25,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:25,943][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:25,943][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:25,945][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:48:25,945][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 15:48:25,945][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:48:25,945][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:48:25,945][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 15:48:25,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:48:25,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:48:25,946][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 15:48:25,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:25,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:25,955][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 15:48:25,956][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:25,957][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:25,957][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:25,958][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:25,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:25,959][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:25,959][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:25,961][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:48:25,962][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:48:25,962][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 15:48:25,963][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:48:25,963][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:48:25,971][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:48:25,971][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:48:25,971][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 15:48:25,971][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 15:48:25,971][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 15:48:25,972][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:48:25,972][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:48:25,972][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:48:25,972][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:48:26,278][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:48:26,278][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:48:26,278][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:48:26,279][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:48:26,279][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 15:48:26,449][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,449][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,449][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,450][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,450][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,450][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,450][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,451][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 15:48:26,451][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 15:48:26,455][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,455][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,455][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,455][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,456][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,456][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,456][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,456][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,456][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,456][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,457][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,457][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 15:48:26,457][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 15:48:26,457][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 15:48:26,457][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 15:48:26,458][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 15:48:26,458][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 15:48:26,458][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 15:48:26,459][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 15:48:26,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:26,460][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:27,747][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:27,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:27,748][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:27,748][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:27,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:27,749][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:27,749][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:27,750][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:27,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:27,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:28,749][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,749][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:28,749][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:28,750][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task d0d1672b-8717-4a05-994b-500137aafebd (source=None, level=None) +[2026-02-19 15:48:28,750][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,750][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:28,750][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:28,750][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,750][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,750][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,751][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:48:28,751][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:48:28,751][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:28,751][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:28,752][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,752][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:28,752][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:28,753][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,755][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:28,756][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:28,756][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:28,756][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:28,756][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:28,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:28,758][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:28,761][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:28,762][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,762][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:28,762][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:28,762][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:28,762][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:28,762][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,763][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:28,763][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:28,805][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,806][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:28,806][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:28,807][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:28,808][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:28,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:28,811][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:28,812][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:28,814][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:28,815][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/d0d1672b-8717-4a05-994b-500137aafebd +[2026-02-19 15:48:28,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:28,818][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:30,012][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:30,013][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:30,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:30,014][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:30,014][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:30,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:30,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:30,017][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:30,017][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:30,017][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:30,018][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:30,018][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:30,018][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:30,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:30,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:30,026][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:30,027][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:30,028][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:30,028][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:30,028][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:30,029][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:30,029][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:30,031][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:30,031][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:30,031][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:30,031][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:30,032][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:30,032][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:30,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:30,036][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:30,792][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,793][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:30,793][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:30,793][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task b3b737f7-ef58-41a0-943c-800c1a47b4fe (source=None, level=None) +[2026-02-19 15:48:30,793][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,793][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:30,794][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:30,794][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,794][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,794][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,795][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:48:30,795][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:48:30,796][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:30,796][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:30,798][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,798][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:30,798][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:30,799][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,800][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:30,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:30,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:30,801][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:30,801][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:30,803][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:30,803][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:30,807][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:30,808][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:30,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:30,841][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,842][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:30,842][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:30,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:30,843][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:30,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:30,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:30,844][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:30,847][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:30,848][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 15:48:30,849][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:30,849][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:31,590][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:31,592][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:31,593][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:31,593][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:31,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:31,594][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:31,594][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:31,598][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:31,598][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:31,598][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:31,599][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:31,599][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:31,599][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:31,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:31,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:31,608][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:31,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:31,609][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:31,609][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:31,609][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:31,611][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:31,611][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:31,616][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:31,617][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:31,617][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:31,617][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:31,617][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:31,617][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:31,620][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:31,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:32,502][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,503][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:32,503][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:32,503][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 (source=None, level=None) +[2026-02-19 15:48:32,503][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,503][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:32,503][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:32,504][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,504][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,504][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,507][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:48:32,507][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:48:32,507][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:32,507][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:32,510][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,511][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:32,511][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:32,513][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,515][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:32,516][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:32,516][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:32,517][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:32,517][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:32,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:32,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:32,524][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:32,525][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:32,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:32,571][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,572][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:32,572][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:32,573][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:32,573][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:32,573][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:32,575][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:32,575][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:32,577][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:32,577][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/aa89a106-e0e0-427d-aa84-a17a5ad6f0e6 +[2026-02-19 15:48:32,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:32,578][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:33,191][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:33,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:33,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:33,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:33,193][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:33,200][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:33,200][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:33,203][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:33,204][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:33,204][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:33,204][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:33,204][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:33,204][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:33,209][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:33,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:33,218][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:33,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:33,220][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:33,220][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:33,220][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:33,222][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:33,222][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:33,225][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:33,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:33,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:34,404][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 920c3930-ecf7-4209-a8ec-8b2396f009df (source=None, level=None) +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:34,404][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,404][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,405][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:48:34,405][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:48:34,405][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:34,405][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:34,408][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,409][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:34,409][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:34,410][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,411][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:34,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:34,413][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:34,413][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:34,413][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:34,415][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:34,415][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:34,418][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:34,418][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,419][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:34,419][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:34,419][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:34,419][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:34,420][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,421][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:34,422][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:34,463][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,464][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:34,465][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:34,465][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:34,465][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:34,465][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:34,466][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:34,467][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:34,468][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:34,469][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/920c3930-ecf7-4209-a8ec-8b2396f009df +[2026-02-19 15:48:34,470][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:34,470][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:35,103][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:35,103][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:35,103][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:35,103][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:35,103][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:35,104][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:35,104][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:35,106][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:35,107][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:35,107][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:35,107][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:35,107][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:35,107][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:35,109][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:35,109][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:35,115][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:35,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:35,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:35,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:35,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:35,117][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:35,117][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:35,120][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:35,120][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:35,120][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:35,120][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:35,121][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:35,121][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:35,123][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:35,124][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:36,188][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:36,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 (source=None, level=None) +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:36,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,189][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 15:48:36,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 15:48:36,192][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:36,192][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:36,194][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,194][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:36,194][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:36,194][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,196][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:36,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:36,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:36,197][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:36,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:36,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:36,200][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:36,203][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:36,204][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:36,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:36,204][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:36,204][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:36,205][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:36,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:36,263][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,265][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:36,266][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:36,267][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:36,267][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:36,267][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:36,270][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:36,270][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:36,274][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:36,274][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,274][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:36,274][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:36,275][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:36,275][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:36,275][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/4eb92097-2c87-4ac6-9031-93b9decca1a4 +[2026-02-19 15:48:36,277][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:36,277][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:38,249][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:38,249][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:38,250][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:38,250][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:38,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:38,252][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:38,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:38,255][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:38,255][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:38,255][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:38,255][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:38,255][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:38,256][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:38,258][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:38,259][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:38,263][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:38,264][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:38,265][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:38,265][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:38,265][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:38,266][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:38,266][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:38,268][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:38,268][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:38,268][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:38,269][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:38,269][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:38,269][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:38,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:38,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:40,215][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-19 15:48:40,215][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:40,215][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:40,215][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:40,216][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:40,216][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:40,216][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:40,216][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:40,216][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-19 15:48:40,216][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-19 15:48:40,217][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-19 15:48:40,217][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 15:48:40,217][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 15:48:40,217][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-19 15:48:40,218][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-19 15:48:40,218][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-19 15:48:40,218][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:40,218][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:40,224][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-19 15:48:40,226][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:40,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:40,227][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:40,227][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:40,228][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:40,229][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:40,230][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:48:40,231][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:48:40,232][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:48:40,235][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task c3db3e02-bb07-4f98-8021-6fb22b1bb929 created and scheduled for execution +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-19 15:48:40,235][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-19 15:48:40,236][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,236][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-19 15:48:40,236][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 15:48:40,236][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 15:48:40,236][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task c3db3e02-bb07-4f98-8021-6fb22b1bb929 for plugin 'Dashboard LLM Validation' +[2026-02-19 15:48:40,236][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,238][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-19 15:48:40,239][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-19 15:48:40,240][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:48:40,240][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:48:40,240][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,240][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,240][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-19 15:48:40,241][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-19 15:48:40,242][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-19 15:48:40,242][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-19 15:48:40,242][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:48:40,242][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=10 +[2026-02-19 15:48:40,242][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 10 +[2026-02-19 15:48:40,243][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-19 15:48:40,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:40,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:40,252][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:40,253][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 (source=None, level=None) +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:40,253][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:40,253][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:40,254][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,255][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:40,255][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:40,256][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,256][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:40,257][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:40,257][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:40,257][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:40,257][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:40,259][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:40,259][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:40,260][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:40,260][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:40,261][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:40,262][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:40,795][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-19 15:48:40,869][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-19 15:48:41,725][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:41,729][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:48:41,729][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:48:41,843][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:41,843][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:41,844][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:41,844][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:41,844][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:41,846][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:41,846][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:41,848][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:41,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:41,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:41,856][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:41,857][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:41,857][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:41,857][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:41,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:41,859][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:41,859][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:41,860][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 15:48:41,860][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 15:48:41,861][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 15:48:41,861][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 15:48:41,861][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 15:48:41,861][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 15:48:41,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:41,865][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:42,024][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-19 15:48:42,043][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-19 15:48:42,294][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-19 15:48:42,308][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-19 15:48:42,308][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-19 15:48:42,375][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-19 15:48:42,409][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-19 15:48:43,416][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-19 15:48:43,425][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-19 15:48:43,425][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljktqQzEMRfficQe... +[2026-02-19 15:48:43,425][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:48:43,735][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,736][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 15:48:43,736][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 15:48:43,736][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 (source=None, level=None) +[2026-02-19 15:48:43,736][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,736][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 15:48:43,736][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 15:48:43,736][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,737][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,737][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 15:48:43,737][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 15:48:43,739][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,739][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:43,739][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:43,740][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,741][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 15:48:43,742][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 15:48:43,742][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 15:48:43,743][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 15:48:43,743][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 15:48:43,745][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 15:48:43,745][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 15:48:43,748][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 15:48:43,749][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,749][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 15:48:43,749][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 15:48:43,749][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 15:48:43,749][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 15:48:43,750][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:48:43,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 15:48:43,751][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 15:48:47,162][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/10/?standalone=true +[2026-02-19 15:48:47,200][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-19 15:49:47,208][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Timeout waiting for loading indicators to hide +[2026-02-19 15:49:47,225][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-19 15:49:47,225][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-19 15:49:47,237][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-19 15:49:47,237][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-19 15:49:48,248][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-19 15:50:03,254][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 0 +[2026-02-19 15:50:03,263][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:50:03,271][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 1 +[2026-02-19 15:50:03,279][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:50:03,284][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 2 +[2026-02-19 15:50:03,297][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:50:03,304][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 1 tabs at depth 3 +[2026-02-19 15:50:03,311][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-19 15:50:03,329][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 2303 +[2026-02-19 15:50:03,333][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:50:03,492][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-19 15:50:03,492][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 15:50:03,492][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 15:50:03,497][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 15:50:03,497][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 15:50:03,497][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 15:50:03,497][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:03,497][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:03,497][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:03,497][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-19 15:50:03,498][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 15:50:03,498][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 15:50:03,498][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-19 15:50:03,498][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 15:50:03,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 15:50:03,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 15:50:03,498][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 15:50:03,813][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 15:50:03,814][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 15:50:03,814][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 15:50:03,814][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 15:50:03,814][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 15:50:03,920][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-19 15:50:03,921][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-19 15:50:03,921][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-19 15:50:03,921][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-19 15:50:03,921][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-19 15:50:03,921][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-19 15:50:03,925][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:03,925][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:03,925][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:03,925][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-19 15:50:04,004][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1842 to 1024x1842 +[2026-02-19 15:50:04,010][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 108.21 KB +[2026-02-19 15:50:04,010][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-19 15:50:04,010][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-19 15:50:04,010][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-19 15:50:04,010][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-19 15:50:04,010][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-19 15:50:04,011][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,011][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,011][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-19 15:50:04,011][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-19 15:50:04,660][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:50:04,660][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:50:04,660][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-19 15:50:04,660][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,661][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-19 15:50:04,663][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task c3db3e02-bb07-4f98-8021-6fb22b1bb929 completed successfully +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-19 15:50:04,663][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,665][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-19 15:50:04,665][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-19 15:50:04,665][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 15:50:04,667][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-19 15:50:04,667][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-19 15:50:04,667][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task c3db3e02-bb07-4f98-8021-6fb22b1bb929 execution finished with status: TaskStatus.SUCCESS +[2026-02-19 15:50:04,667][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-19 15:50:04,667][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-19 16:17:07,044][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 16:17:07,045][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:07,045][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:07,045][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:07,045][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:07,045][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:07,046][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:07,046][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:07,046][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 16:17:07,046][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 16:17:07,046][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 16:17:07,047][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 16:17:07,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:07,048][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:07,067][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 16:17:07,068][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:07,068][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:07,069][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:07,069][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:07,069][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:07,071][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:07,071][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:07,073][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 16:17:07,073][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 16:17:07,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:17:07,073][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:17:07,074][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 16:17:07,074][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:17:07,074][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:17:07,074][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 16:17:07,075][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:07,075][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:07,083][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 16:17:07,084][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:07,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:07,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:07,085][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:07,085][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:07,086][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:07,087][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:07,088][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 16:17:07,088][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 16:17:07,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 16:17:07,089][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 16:17:07,089][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 16:17:07,090][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 16:17:07,090][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 16:17:07,095][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 16:17:07,095][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 16:17:07,095][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 16:17:07,095][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 16:17:07,095][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 16:17:07,096][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 16:17:07,096][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 16:17:07,096][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 16:17:07,096][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 16:17:07,096][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 16:17:07,096][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 16:17:08,255][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 16:17:08,255][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 16:17:08,255][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 16:17:08,255][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 16:17:08,255][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 16:17:09,226][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 16:17:09,226][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 16:17:09,226][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 16:17:09,226][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,227][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,227][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,228][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,228][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 16:17:09,228][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 16:17:09,228][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,231][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,232][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,232][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,232][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 16:17:09,232][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 16:17:09,232][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,232][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,233][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,233][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,233][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 16:17:09,233][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 16:17:09,234][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,234][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,234][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,234][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,238][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 16:17:09,239][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 16:17:09,250][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,250][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,250][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 16:17:09,250][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,251][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,251][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,252][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,252][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 16:17:09,252][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,253][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 16:17:09,253][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,254][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,254][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 16:17:09,254][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,255][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:17:09,255][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:17:09,256][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:17:09,256][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 16:17:09,256][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 16:17:09,256][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 16:17:09,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 16:17:09,256][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 16:17:09,258][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 16:17:09,259][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 16:17:09,259][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 16:17:09,267][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 16:17:09,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:09,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:09,272][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:09,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:09,273][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:09,273][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:09,273][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:09,276][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:09,276][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:09,278][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:09,279][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:09,279][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:09,279][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:09,279][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:09,279][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:09,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:09,286][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:09,298][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:09,299][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:09,300][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:09,300][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:09,300][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:09,301][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:09,301][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:09,303][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:09,304][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:09,304][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:09,304][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:09,304][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:09,304][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:09,308][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:09,309][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 16:17:10,583][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 (source=None, level=None) +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 16:17:10,583][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 16:17:10,584][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,584][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,584][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,587][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 16:17:10,587][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 16:17:10,588][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 16:17:10,588][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 16:17:10,590][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,590][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:10,590][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:10,592][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,595][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:10,595][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:10,595][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:10,595][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:10,595][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:10,597][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:10,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:10,601][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 16:17:10,602][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,602][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:10,602][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:10,602][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 16:17:10,602][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 16:17:10,603][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,604][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:10,604][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:10,650][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,652][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:10,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:10,654][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:10,654][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:10,654][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:10,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:10,656][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:10,660][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 16:17:10,660][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,661][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:10,661][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:10,661][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 16:17:10,661][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 16:17:10,662][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/c3db3e02-bb07-4f98-8021-6fb22b1bb929 +[2026-02-19 16:17:10,663][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:10,663][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:11,947][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:11,948][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:11,948][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:11,949][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:11,949][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:11,951][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:11,952][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:11,954][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:11,954][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:11,954][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:11,954][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:11,955][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:11,955][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:11,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:11,958][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:11,963][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:11,963][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:11,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:11,964][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:11,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:11,965][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:11,965][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:11,967][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:11,968][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:11,968][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:11,968][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:11,968][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:11,969][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:11,971][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:11,972][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:13,189][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 16:17:13,189][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 16:17:13,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task b3b737f7-ef58-41a0-943c-800c1a47b4fe (source=None, level=None) +[2026-02-19 16:17:13,190][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,190][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 16:17:13,190][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 16:17:13,190][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,190][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,190][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 16:17:13,191][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 16:17:13,191][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 16:17:13,192][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 16:17:13,195][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,195][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:13,195][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:13,197][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,197][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:13,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:13,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:13,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:13,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:13,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:13,201][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:13,203][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 16:17:13,203][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:13,204][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:13,204][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 16:17:13,204][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 16:17:13,204][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:13,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:13,234][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,236][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:13,237][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:13,238][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:13,238][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:13,238][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:13,239][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:13,239][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 16:17:13,241][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 16:17:13,242][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/b3b737f7-ef58-41a0-943c-800c1a47b4fe +[2026-02-19 16:17:13,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:13,244][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:14,064][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:14,064][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:14,065][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:14,065][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:14,065][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:14,067][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:14,067][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:14,069][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:14,070][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:14,070][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:14,070][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:14,070][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:14,070][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:14,073][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:14,073][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:14,079][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:14,080][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:14,080][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:14,080][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:14,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:14,082][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:14,082][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:14,085][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:14,086][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:14,086][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:14,086][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:14,086][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:14,086][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:14,089][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:14,089][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:17:16,774][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:17:16,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:17:16,774][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:17:16,774][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:17:16,774][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:17:16,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:17:16,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 16:17:16,776][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 16:17:16,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:17:16,777][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:20:08,982][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 16:20:08,982][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:20:08,983][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:20:08,983][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:20:08,983][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:20:08,983][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:20:08,984][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:20:08,984][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:20:08,984][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 16:20:08,984][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 16:20:08,984][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 16:20:08,985][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 16:20:08,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:20:08,986][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:20:09,015][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 16:20:09,015][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:20:09,015][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:20:09,015][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:20:09,016][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:20:09,016][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:20:09,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:20:09,016][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:20:09,017][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 16:20:09,018][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 16:20:09,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:20:09,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:20:09,018][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 16:20:09,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:20:09,018][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:20:09,019][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 16:20:09,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:20:09,021][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 16:20:09,028][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 16:20:09,029][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 16:20:09,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 16:20:09,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 16:20:09,030][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 16:20:09,030][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 16:20:09,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 16:20:09,031][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 16:20:09,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 16:20:09,033][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 16:20:09,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 16:20:09,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 16:20:09,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 16:20:09,034][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 16:20:09,034][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 16:20:09,034][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 16:20:09,039][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 16:20:09,039][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 16:20:09,039][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 16:20:09,824][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 16:20:09,824][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 16:20:09,824][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 16:20:09,824][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 16:20:09,824][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 16:20:10,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 16:20:10,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 16:20:10,239][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 16:20:10,239][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 16:20:10,239][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 16:20:10,239][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,240][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,240][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,240][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,240][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,240][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,241][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 16:20:10,241][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,245][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,245][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,246][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,246][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,246][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 16:20:10,246][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,247][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,247][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,247][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 16:20:10,247][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 16:20:10,247][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 16:20:10,247][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 16:20:10,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 16:20:10,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 16:20:10,249][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 16:20:10,250][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 16:20:10,250][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 16:20:10,250][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 16:20:10,251][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 16:20:10,251][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:37:07,801][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 17:37:07,803][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:37:07,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:37:07,803][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:37:07,804][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:37:07,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:37:07,804][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:37:07,804][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:37:07,804][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 17:37:07,805][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 17:37:07,805][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 17:37:07,805][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 17:37:07,806][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:37:07,806][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:37:07,819][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 17:37:07,820][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:37:07,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:37:07,820][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:37:07,820][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:37:07,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:37:07,821][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:37:07,821][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:37:07,822][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 17:37:07,822][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 17:37:07,822][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:37:07,822][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:37:07,822][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 17:37:07,822][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:37:07,823][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:37:07,823][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 17:37:07,823][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:37:07,823][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:37:07,829][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 17:37:07,830][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:37:07,830][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:37:07,830][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:37:07,830][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:37:07,830][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:37:07,831][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:37:07,831][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:37:07,832][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 17:37:07,832][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 17:37:07,832][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:37:07,832][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 17:37:07,833][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 17:37:07,833][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 17:37:07,833][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 17:37:07,838][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 17:37:07,839][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 17:37:07,839][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 17:37:07,839][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 17:37:07,839][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 17:37:07,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 17:37:07,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 17:37:07,840][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 17:37:09,504][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 17:37:09,504][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 17:37:09,504][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 17:37:09,504][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 17:37:09,504][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 17:37:10,329][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,329][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,329][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,330][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,330][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,330][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,330][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,331][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 17:37:10,331][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,336][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,336][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,336][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:37:10,337][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 17:37:10,337][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 17:37:10,337][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 17:37:10,338][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 17:37:10,339][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 17:37:10,339][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 17:37:10,339][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 17:37:10,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:37:10,339][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:43:16,477][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 17:43:16,477][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:43:16,478][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:43:16,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:43:16,479][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:43:16,480][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:43:16,481][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:43:16,481][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:43:16,481][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 17:43:16,481][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 17:43:16,481][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 17:43:16,483][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 17:43:16,483][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:43:16,484][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:43:16,507][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 17:43:16,507][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:43:16,508][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:43:16,508][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:43:16,508][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:43:16,508][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:43:16,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:43:16,511][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 17:43:16,513][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:43:16,513][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:43:16,513][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 17:43:16,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:43:16,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 17:43:16,525][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 17:43:16,526][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 17:43:16,527][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 17:43:16,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 17:43:16,528][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 17:43:16,528][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 17:43:16,529][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 17:43:16,529][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 17:43:16,531][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 17:43:16,531][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 17:43:16,531][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 17:43:16,532][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 17:43:16,532][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 17:43:16,538][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 17:43:16,538][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 17:43:16,538][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 17:43:16,538][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 17:43:16,538][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 17:43:16,539][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 17:43:16,539][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 17:43:16,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 17:43:16,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 17:43:16,539][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 17:43:17,227][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 17:43:17,227][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 17:43:17,227][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 17:43:17,227][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 17:43:17,227][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 17:43:17,428][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,428][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 17:43:17,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,429][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,430][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,430][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,431][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,432][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 17:43:17,433][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 17:43:17,441][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,441][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,442][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,442][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,442][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,442][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,443][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,443][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,443][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,444][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,444][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 17:43:17,444][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 17:43:17,444][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 17:43:17,445][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 17:43:17,445][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 17:43:17,445][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 17:43:17,445][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 17:43:17,449][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 17:43:17,451][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 17:43:17,451][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 17:43:17,452][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 17:43:17,453][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 17:43:17,454][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:02:13,576][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:02:13,576][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:02:13,577][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:02:13,577][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:02:13,577][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:02:13,577][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:02:13,578][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:02:13,578][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:02:13,580][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:02:13,580][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:02:13,580][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:02:13,581][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:02:13,581][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:02:13,595][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:02:13,596][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:02:13,596][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:02:13,597][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:02:13,597][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:02:13,597][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:02:13,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:02:13,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:02:13,602][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:02:13,603][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:02:13,603][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:02:13,603][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:02:13,604][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:02:13,611][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:02:13,611][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:02:13,611][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:02:13,611][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:02:13,611][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:02:13,611][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:02:13,612][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:02:13,612][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:02:13,612][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:02:13,612][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:02:14,737][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:02:14,737][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:02:14,737][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:02:14,737][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:02:14,737][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:02:15,416][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:02:15,416][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:02:15,416][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:02:15,416][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:02:15,416][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,417][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,417][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,417][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,417][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,417][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,418][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:02:15,418][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,422][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,422][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,422][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,422][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,422][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,422][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,423][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,423][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:02:15,423][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:02:15,423][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:02:15,423][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:02:15,424][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:02:15,424][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:02:15,424][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:02:15,424][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:02:15,425][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:02:15,425][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:05:22,141][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:05:22,142][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:05:22,142][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:05:22,143][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:05:22,143][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:05:22,143][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:05:22,144][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:05:22,144][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:05:22,145][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:05:22,146][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:05:22,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:05:22,147][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:07:54,977][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:07:54,978][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:07:54,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:07:54,978][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:07:54,978][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:07:54,978][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:07:54,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:07:54,979][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:07:54,980][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:07:54,980][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:07:54,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:07:54,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:08:14,245][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:08:14,246][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:08:14,246][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:08:14,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:08:14,247][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:08:14,247][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:08:14,248][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:08:14,249][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:08:14,250][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:08:14,251][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:08:14,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:08:14,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:08:46,323][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:08:46,324][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:08:46,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:08:46,325][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:08:46,325][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:08:46,325][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:08:46,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:08:46,327][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:08:46,329][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:08:46,330][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:08:46,331][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:08:46,332][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:09:08,383][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:09:08,384][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:09:08,384][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:09:08,385][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:09:08,385][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:09:08,385][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:09:08,387][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:09:08,387][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:09:08,388][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:09:08,389][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:09:08,389][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:09:08,389][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:09:08,389][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:09:08,389][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:09:08,390][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:09:08,391][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:09:08,391][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:09:45,926][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:09:45,927][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:09:45,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:09:45,927][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:09:45,927][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:09:45,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:09:45,928][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:09:45,928][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:09:45,929][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:09:45,930][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:09:45,930][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:09:45,930][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:09:45,930][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:09:45,930][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:09:45,930][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:09:45,931][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:09:45,931][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:10:06,924][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:10:06,926][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:10:06,926][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:10:06,926][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:10:06,927][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:10:06,927][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:10:06,927][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:10:06,927][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:10:06,929][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:10:06,929][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:10:06,929][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:10:06,929][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:10:06,929][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:10:06,930][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:10:06,930][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:10:06,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:10:06,932][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:10:08,901][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:10:08,902][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:10:08,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:10:08,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:10:08,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:10:08,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:10:08,904][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:10:08,904][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:10:08,905][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:10:08,905][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:10:08,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:10:08,906][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:10:44,923][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:10:44,925][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:10:44,925][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:10:44,925][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:10:44,925][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:10:44,926][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:10:44,926][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:10:44,926][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:10:44,927][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:10:44,927][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:10:44,928][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:10:44,928][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:10:51,737][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:10:51,738][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 401 for /api/plugins +[2026-02-19 18:15:11,411][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:15:11,412][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:15:11,412][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:15:11,413][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:15:11,413][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:15:11,413][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:15:11,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:15:11,413][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:15:11,414][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:15:11,414][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:15:11,415][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:15:11,415][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:15:23,373][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:15:23,374][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:15:23,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:15:23,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:15:23,375][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:15:23,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:15:23,377][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:15:23,377][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:15:23,377][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:15:23,378][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:15:23,378][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:15:23,378][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:15:23,378][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:15:23,378][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:15:23,379][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:15:23,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:15:23,380][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:15:43,516][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:15:43,516][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:15:43,517][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:15:43,517][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:15:43,517][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:15:43,517][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:15:43,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:15:43,518][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:15:43,520][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:15:43,521][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:15:43,521][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:15:43,522][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:16:06,296][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:16:06,297][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:16:06,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:16:06,297][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:16:06,297][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:16:06,297][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:16:06,298][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:16:06,298][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:16:06,299][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:16:06,299][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:16:08,555][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:16:08,555][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:16:08,556][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:16:08,556][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:16:08,556][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:16:08,556][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:16:08,558][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:16:08,558][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:16:08,559][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:16:08,559][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:16:08,559][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:16:08,559][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:16:08,559][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:16:08,560][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:16:08,560][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:16:08,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:16:08,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:16:10,597][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:16:10,597][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:16:10,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:16:10,598][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:16:10,598][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:16:10,598][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:16:10,598][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:16:10,599][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:16:10,599][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:16:10,599][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:16:10,600][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:16:10,600][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:16:10,600][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:16:10,600][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:16:10,600][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:16:10,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:16:10,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:17:36,271][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:17:36,272][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:17:36,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:17:36,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:17:36,272][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:17:36,272][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:17:36,273][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:17:36,273][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:17:36,274][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:17:36,275][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:17:36,275][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:17:36,275][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:17:36,275][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:17:36,275][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:17:36,275][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:17:36,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:17:36,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:18:13,733][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:18:13,734][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:18:13,734][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:18:13,735][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:18:13,735][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:18:13,735][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:18:13,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:18:13,735][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:18:13,736][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:18:13,737][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:18:13,737][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:18:13,737][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:08,817][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:08,818][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:08,818][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:08,818][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:08,818][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:08,818][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:08,819][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:08,819][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:08,820][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:08,821][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:08,821][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:08,821][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:08,821][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:08,821][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:08,821][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:08,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:08,822][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:11,134][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:11,136][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:11,136][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:11,137][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:11,137][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:11,137][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:11,138][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:11,138][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:11,140][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:11,141][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:11,142][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:11,142][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:13,176][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:13,176][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:13,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:13,177][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:13,177][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:13,177][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:13,178][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:13,179][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:13,180][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:13,180][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:13,180][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:13,180][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:13,181][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:13,181][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:13,181][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:13,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:13,182][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:22,744][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:22,745][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:22,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:22,745][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:22,745][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:22,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:22,746][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:22,746][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:22,748][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:22,749][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:22,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:22,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:35,525][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:35,526][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:35,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:35,526][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:35,526][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:35,526][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:35,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:35,527][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:35,528][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:35,528][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:35,529][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:35,529][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:35,529][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:35,529][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:35,529][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:35,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:35,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:37,707][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:19:37,708][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:37,708][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:37,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:37,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:37,709][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:37,709][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:37,709][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:37,710][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:19:37,711][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:19:37,711][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:19:37,711][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:19:37,711][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:19:37,711][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:19:37,711][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:19:37,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:37,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:37,761][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:19:37,762][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:37,763][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:37,763][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:37,763][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:37,763][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:37,764][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:37,765][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:37,765][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:19:37,765][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:19:37,765][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:19:37,766][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:19:37,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:37,768][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:37,958][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:19:37,958][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:37,959][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:37,959][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:37,959][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:37,960][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:37,961][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:37,962][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:37,963][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:37,963][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:19:37,963][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:37,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:37,964][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:37,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:37,964][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:37,964][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:19:37,964][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:37,965][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:37,973][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:19:37,974][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:37,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:37,974][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:37,974][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:37,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:37,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:37,975][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:37,976][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:19:37,976][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:37,977][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:19:37,977][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:19:37,983][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:19:37,984][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:19:37,984][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:19:37,984][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:19:37,984][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:19:37,985][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:19:37,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:19:37,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:19:37,985][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:19:38,778][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:19:38,778][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:19:38,778][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:19:38,778][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:19:38,778][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:19:39,471][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:19:39,472][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,472][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,472][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,473][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,473][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,473][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,474][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,474][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:19:39,474][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,478][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,478][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,479][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:19:39,479][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,480][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:39,480][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:19:39,480][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:19:39,480][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:19:39,481][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:19:39,481][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:39,481][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:39,481][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:19:39,482][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:39,482][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:53,779][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:19:53,779][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:53,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:53,780][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:53,780][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:53,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:53,781][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:53,781][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:53,781][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:19:53,781][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:19:53,781][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:19:53,783][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:19:53,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:53,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:53,804][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:19:53,804][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:53,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:53,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:53,805][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:53,805][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:53,806][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:53,806][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:53,808][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:53,808][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:53,809][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:19:53,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:53,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:53,818][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:19:53,820][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:53,820][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:53,821][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:53,821][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:53,821][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:53,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:53,822][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:19:53,824][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:53,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:53,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:19:53,825][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:19:53,834][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:19:53,835][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:19:53,835][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:19:53,835][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:19:53,835][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:19:53,836][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:19:53,836][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:19:53,836][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:19:53,836][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:19:53,836][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:19:54,188][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:19:54,188][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:19:54,188][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:19:54,188][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:19:54,188][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:19:54,510][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:19:54,511][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,511][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,511][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,512][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,512][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,512][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,512][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,513][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:19:54,513][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:19:54,518][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,519][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,519][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,519][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:19:54,519][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,520][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,520][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,521][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,521][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:54,521][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:54,522][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:54,522][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:19:54,522][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:19:54,522][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:19:54,522][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:19:54,522][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:19:54,523][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:19:54,524][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:54,524][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:54,524][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:19:54,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:54,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:57,052][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:19:57,053][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:57,053][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:57,054][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:57,054][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:57,054][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:57,055][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:57,056][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:57,056][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:19:57,057][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:19:57,057][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:19:57,058][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:19:57,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:57,060][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:57,077][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:19:57,078][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:57,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:57,079][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:57,079][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:57,079][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:57,080][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:57,080][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:57,081][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:57,082][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:19:57,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:57,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:57,082][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:57,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:57,082][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:57,082][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:19:57,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:57,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:57,093][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:19:57,094][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:57,094][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:57,095][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:57,095][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:57,095][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:57,097][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:57,097][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:57,099][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:19:57,099][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:19:57,099][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:57,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:57,100][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:19:57,100][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:19:57,108][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:19:57,108][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:19:57,108][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:19:57,108][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:19:57,108][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:19:57,109][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:19:57,109][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:19:57,109][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:19:57,109][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:19:57,109][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:19:57,439][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:19:57,439][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:19:57,439][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:19:57,440][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:19:57,440][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:19:57,696][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,696][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:19:57,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:19:57,698][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:19:57,699][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:19:57,705][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,706][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,706][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:19:57,707][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:19:57,707][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:19:57,707][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:19:57,708][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:19:57,708][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:19:57,708][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:19:57,709][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:19:57,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:57,710][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:59,269][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:19:59,269][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:59,270][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:59,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:59,271][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:59,271][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:59,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:59,272][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:59,272][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:19:59,272][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:19:59,272][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:19:59,274][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:19:59,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:59,276][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:59,298][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:19:59,299][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:59,299][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:59,299][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:59,300][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:59,300][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:59,300][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:59,301][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:59,302][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:59,303][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:19:59,303][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:59,303][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:59,303][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:19:59,303][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:59,303][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:59,303][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:19:59,304][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:59,304][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:19:59,314][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/datasets +[2026-02-19 18:19:59,315][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:19:59,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:19:59,316][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:19:59,316][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:19:59,316][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:19:59,318][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:19:59,318][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 18:19:59,321][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:59,321][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:19:59,322][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:19:59,322][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:19:59,330][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:19:59,331][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:19:59,331][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 18:19:59,331][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:19:59,331][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:19:59,332][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:19:59,332][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:19:59,332][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:19:59,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:19:59,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:19:59,332][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:19:59,657][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:19:59,657][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:19:59,657][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:19:59,657][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:19:59,658][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:19:59,917][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:19:59,918][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 18:19:59,918][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 18:19:59,918][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 18:19:59,919][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 18:19:59,920][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:19:59,920][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:19:59,920][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/datasets +[2026-02-19 18:19:59,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:19:59,921][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:01,462][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:01,463][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:01,463][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:01,463][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:01,463][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:01,463][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:01,464][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:01,465][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:01,465][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:01,465][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:01,465][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:01,467][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:01,468][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:01,468][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:01,516][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments +[2026-02-19 18:20:01,518][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:01,519][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:01,519][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:01,519][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:01,519][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:01,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:01,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:01,525][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/storage/files +[2026-02-19 18:20:01,525][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:01,525][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 18:20:01,525][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:01,525][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:01,525][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:01,526][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:01,527][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments +[2026-02-19 18:20:01,530][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 18:20:01,532][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:01,533][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:01,532][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:01,534][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:01,534][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-19 18:20:01,534][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:01,536][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:01,537][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:01,540][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_files][Entry] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 18:20:01,541][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 18:20:01,542][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 18:20:01,543][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 18:20:01,544][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 18:20:01,544][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 18:20:01,544][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 18:20:01,545][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 18:20:01,545][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/storage/files +[2026-02-19 18:20:01,547][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:01,548][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:04,349][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:04,350][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 18:20:04,351][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:04,351][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:04,352][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:04,352][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:04,352][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:04,353][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:04,353][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:04,353][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:04,353][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:04,355][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:04,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:04,356][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:04,374][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/users +[2026-02-19 18:20:04,375][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/roles +[2026-02-19 18:20:04,375][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-19 18:20:04,375][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:04,376][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:04,377][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:04,378][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:04,378][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:04,378][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:04,378][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:04,380][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_roles][Entry] +[2026-02-19 18:20:04,381][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] +[2026-02-19 18:20:04,381][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] +[2026-02-19 18:20:04,383][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_users][Entry] +[2026-02-19 18:20:04,383][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] +[2026-02-19 18:20:04,383][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] +[2026-02-19 18:20:04,384][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/roles +[2026-02-19 18:20:04,385][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/users +[2026-02-19 18:20:04,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:04,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:04,386][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:04,387][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:06,787][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 18:20:06,788][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:06,789][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:06,789][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:06,789][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:06,789][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:06,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:06,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:06,792][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 18:20:06,793][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 18:20:06,793][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 18:20:06,793][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 18:20:06,793][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 18:20:06,793][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:20:06,793][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:20:06,801][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 18:20:06,802][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:06,802][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:06,823][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:06,824][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:06,824][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:06,825][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:06,825][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:06,825][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:06,826][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:06,827][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:06,827][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:06,828][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:06,828][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:06,830][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:06,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:06,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:06,847][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 18:20:06,848][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:06,848][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:06,848][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:06,849][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:06,849][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:06,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:06,849][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:06,852][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 18:20:06,852][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 18:20:06,852][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 18:20:06,852][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:20:06,852][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:20:06,852][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 18:20:06,853][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 18:20:06,853][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 18:20:06,853][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 18:20:06,853][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 18:20:06,853][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 18:20:06,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:06,854][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:08,513][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:08,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:08,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:08,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:08,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:08,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:08,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 18:20:08,517][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 18:20:08,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:08,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:10,077][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:20:10,078][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:10,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:10,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:10,078][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:10,078][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:10,079][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:10,079][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:20:10,081][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:20:10,081][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:20:10,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:10,082][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:37,738][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 18:20:37,739][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:37,739][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:37,740][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:37,740][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:37,740][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:37,741][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:37,741][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 18:20:37,743][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:20:37,743][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:20:37,744][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 18:20:37,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:37,745][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:37,792][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:37,793][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:37,793][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:37,794][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:37,794][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:37,794][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:37,795][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:37,796][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:37,796][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:37,796][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:37,796][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:37,799][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:37,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:37,804][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:37,824][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 18:20:37,825][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:37,825][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:37,825][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:37,825][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:37,825][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:37,827][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:37,827][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:37,829][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 18:20:37,829][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 18:20:37,829][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 18:20:37,829][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:20:37,829][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:20:37,829][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 18:20:37,830][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 18:20:37,830][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 18:20:37,830][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 18:20:37,830][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 18:20:37,831][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 18:20:37,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:37,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:38,771][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:38,772][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:38,772][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:38,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:38,773][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:38,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:38,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:38,776][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:38,776][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:38,776][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:38,776][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:38,778][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:38,779][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:38,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:38,793][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:20:38,794][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:38,794][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:38,795][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:38,795][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:38,795][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:38,796][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:38,797][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:38,798][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:38,798][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:38,799][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:20:38,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:38,799][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:38,809][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:20:38,810][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:38,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:38,810][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:38,810][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:38,810][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:38,811][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:38,811][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:20:38,813][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:38,814][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:38,814][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:20:38,814][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:20:38,820][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:20:38,820][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:20:38,820][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:20:38,820][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:20:38,820][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:20:38,820][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:20:38,820][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:20:38,820][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:20:38,820][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:20:38,821][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:20:38,821][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:20:38,821][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:20:38,821][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:20:39,149][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:20:39,149][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:20:39,150][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:20:39,150][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:20:39,150][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:20:39,797][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:20:39,798][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,798][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,798][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,799][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:20:39,799][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:20:39,805][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,805][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,805][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,806][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,806][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,806][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,806][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:20:39,806][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:39,807][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:39,807][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:20:39,808][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:20:39,808][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:20:39,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:20:39,808][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:20:39,810][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:20:39,810][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:20:39,810][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:20:39,811][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:20:39,811][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:39,812][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:40,846][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:40,847][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:40,847][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:40,847][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:40,847][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:40,847][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:40,848][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:40,848][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:40,848][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:40,849][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:40,849][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:40,849][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:40,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:40,851][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:40,885][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:20:40,894][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:40,902][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:40,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:40,903][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:40,903][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:40,904][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:40,904][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:40,909][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:40,909][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:20:40,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:40,910][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:40,910][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:40,914][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:40,915][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:40,916][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:20:40,922][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:40,923][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:40,939][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/datasets +[2026-02-19 18:20:40,941][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:40,941][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:40,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:40,941][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:40,941][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:40,943][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:40,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:40,946][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:20:40,946][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 18:20:40,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:40,946][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:40,946][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:40,947][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:40,947][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:20:40,947][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:20:40,955][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:20:40,955][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:20:40,955][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 18:20:40,955][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:20:40,955][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:20:40,956][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:20:40,956][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:20:40,956][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:20:40,956][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:20:40,956][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:20:40,956][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:20:40,956][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:20:41,282][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:20:41,282][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:20:41,282][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:20:41,282][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:20:41,282][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:20:41,413][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:20:41,414][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 18:20:41,414][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 18:20:41,415][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 18:20:41,415][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 18:20:41,415][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 18:20:41,417][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 18:20:41,417][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:20:41,417][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:20:41,417][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/datasets +[2026-02-19 18:20:41,418][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:41,418][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:45,941][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:45,941][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:45,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:45,942][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:45,942][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:45,942][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:45,943][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:45,944][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:45,944][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:45,944][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:45,945][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:45,946][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:45,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:45,947][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:45,972][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:20:45,974][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:45,974][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:45,974][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:45,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:45,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:45,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:45,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:45,978][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:45,979][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:20:45,979][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:45,979][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:45,979][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:45,979][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:45,979][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:45,979][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:20:45,980][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:45,982][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:45,998][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/datasets +[2026-02-19 18:20:46,001][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:46,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:46,003][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:46,003][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:46,004][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:46,005][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:46,006][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:46,008][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:20:46,008][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-19 18:20:46,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:46,008][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:46,008][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:46,009][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:46,009][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:20:46,009][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:20:46,018][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:20:46,018][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:20:46,018][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:20:46,019][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-19 18:20:46,019][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-19 18:20:46,019][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-19 18:20:46,020][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-19 18:20:46,020][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:20:46,020][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:20:46,021][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:20:46,021][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:20:46,021][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:20:46,021][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:20:46,400][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:20:46,400][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:20:46,400][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:20:46,400][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:20:46,400][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:20:46,537][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-19 18:20:46,537][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:20:46,537][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:20:46,537][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-19 18:20:46,538][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-19 18:20:46,538][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-19 18:20:46,540][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-19 18:20:46,540][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-19 18:20:46,540][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-19 18:20:46,540][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/datasets +[2026-02-19 18:20:46,542][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:46,542][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:48,638][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:20:48,638][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:48,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:48,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:48,639][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:48,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:48,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:48,640][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:48,640][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:20:48,640][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:20:48,641][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:20:48,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:20:48,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:48,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:48,658][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:20:48,658][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:48,659][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:48,659][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:48,659][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:48,659][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:48,660][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:48,661][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:48,662][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:48,663][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:20:48,663][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:48,663][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:48,663][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:20:48,663][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:48,663][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:48,663][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:20:48,664][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:48,664][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:48,672][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:20:48,673][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:48,673][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:48,674][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:48,674][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:48,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:48,675][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:48,675][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:48,677][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:20:48,677][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:20:48,677][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:20:48,683][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:20:48,683][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:20:48,683][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:20:49,000][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:20:49,000][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:20:49,000][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:20:49,000][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:20:49,000][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:20:49,181][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:20:49,182][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,182][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,182][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,182][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:20:49,182][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,183][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:20:49,183][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:20:49,187][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,187][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,188][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,188][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,189][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:20:49,189][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:20:49,189][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:20:49,189][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:20:49,190][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:20:49,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:20:49,190][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:20:49,190][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:20:49,191][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:49,191][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:52,975][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:52,975][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:52,975][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:52,976][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:52,976][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:52,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:52,976][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:52,978][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 18:20:52,978][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 18:20:52,978][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 18:20:52,979][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 18:20:52,979][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 18:20:52,979][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 18:20:52,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:52,981][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:55,580][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,580][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-19 18:20:55,580][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-19 18:20:55,580][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task fe971776-a713-4ddb-902f-f50d40290c88 (source=None, level=None) +[2026-02-19 18:20:55,581][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,581][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-19 18:20:55,581][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-19 18:20:55,581][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,581][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,581][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskLogPersistenceService.get_logs][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,582][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Coherence:OK] +[2026-02-19 18:20:55,582][DEBUG][superset_tools_app] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Action] [TaskLogPersistenceService.get_logs][Exit] +[2026-02-19 18:20:55,582][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-19 18:20:55,582][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-19 18:20:55,584][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,585][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 18:20:55,585][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 18:20:55,597][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,599][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:55,599][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:55,600][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:55,600][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:55,600][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:55,601][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:55,601][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:55,604][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 18:20:55,605][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,605][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 18:20:55,605][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 18:20:55,605][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 18:20:55,605][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 18:20:55,605][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:55,607][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:20:55,641][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,642][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:20:55,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:20:55,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:20:55,643][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:20:55,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:20:55,645][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:20:55,645][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-19 18:20:55,648][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-19 18:20:55,649][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/fe971776-a713-4ddb-902f-f50d40290c88 +[2026-02-19 18:20:55,650][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:20:55,651][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:04,519][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/plugins +[2026-02-19 18:21:04,520][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:04,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:04,520][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:04,520][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:04,520][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:04,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:04,521][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_plugins][Entry] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 18:21:04,523][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 18:21:04,523][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/plugins +[2026-02-19 18:21:04,524][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:04,524][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:09,389][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:21:09,390][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:09,391][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:09,391][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:09,391][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:09,391][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:09,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:09,393][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:09,393][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:21:09,393][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:21:09,393][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:21:09,394][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:21:09,395][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:09,395][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:09,415][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments +[2026-02-19 18:21:09,416][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/storage/files +[2026-02-19 18:21:09,416][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:09,416][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:09,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:09,417][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:09,417][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:09,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:09,417][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:09,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:09,418][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:09,419][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:09,419][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:09,419][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:09,420][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:09,420][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_files][Entry] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:21:09,421][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 18:21:09,422][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-19 18:21:09,422][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-19 18:21:09,423][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/storage/files +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:09,425][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:09,425][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments +[2026-02-19 18:21:09,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:09,426][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:09,427][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:09,428][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-19 18:21:17,498][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:21:17,498][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:17,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:17,499][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:17,499][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:17,499][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:17,500][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:17,500][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:17,500][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:21:17,500][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:21:17,500][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:21:17,502][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:21:17,504][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:17,504][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:17,522][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-19 18:21:17,524][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:17,524][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:17,525][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:17,525][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:17,525][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:17,526][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:17,526][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:21:17,528][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:17,528][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:17,528][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-19 18:21:17,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:17,529][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:17,537][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:21:17,538][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:17,538][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:17,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:17,538][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:17,538][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:17,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:17,539][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:17,540][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:21:17,541][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:21:17,541][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:21:17,541][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:21:17,547][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:21:17,548][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:21:17,548][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:21:17,548][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:21:17,548][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:21:17,549][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:21:17,549][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:21:17,549][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:21:17,882][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:21:17,882][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:21:17,882][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:21:17,882][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:21:17,882][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:21:18,118][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:21:18,118][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,119][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,119][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,119][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,119][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:21:18,119][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:21:18,120][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:21:18,124][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,125][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:21:18,125][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,126][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,126][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,126][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,126][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:21:18,126][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:18,127][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:21:18,127][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:21:18,127][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:21:18,128][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 18:21:18,128][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:21:18,128][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:21:18,128][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:21:18,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:18,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:21:22,217][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-19 18:21:22,218][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:21:22,218][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:21:22,219][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:21:22,219][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:21:22,219][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:21:22,220][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:21:22,220][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:21:22,221][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=2, page_size=10 +[2026-02-19 18:21:22,221][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 18:21:22,221][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 18:21:22,221][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:21:22,222][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 18:21:22,222][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 18:21:22,222][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 18:21:22,227][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 18:21:22,228][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 18:21:22,228][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 18:21:22,228][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 18:21:22,228][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 18:21:22,229][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 18:21:22,229][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 18:21:22,229][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 18:21:22,229][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 18:21:22,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 18:21:22,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 18:21:22,229][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 18:21:22,534][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 18:21:22,534][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 18:21:22,534][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 18:21:22,534][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 18:21:22,535][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 18:21:22,696][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 18:21:22,696][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,697][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,697][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 18:21:22,698][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 18:21:22,703][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,703][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,703][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,703][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,704][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,704][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,704][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,704][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,704][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,704][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,705][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,705][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 18:21:22,705][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 18:21:22,705][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 18:21:22,705][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 18:21:22,706][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 3 dashboards (page 2/2, total: 13) +[2026-02-19 18:21:22,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 18:21:22,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 18:21:22,706][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-19 18:21:22,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:21:22,707][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:24:05,716][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:24:05,717][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:24:05,717][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:24:05,717][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:24:05,717][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:24:05,718][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:24:05,718][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-19 18:24:05,720][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-19 18:24:05,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:24:05,722][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:24:10,195][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 18:24:10,197][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:24:10,197][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:24:10,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:24:10,198][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:24:10,198][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:24:10,198][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:24:10,199][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:24:10,200][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 18:24:10,200][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 18:24:10,200][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 18:24:10,201][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 18:24:10,201][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 18:24:10,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:24:10,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:24:10,201][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 18:24:10,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:24:10,203][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:24:10,230][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:24:10,230][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:24:10,231][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:24:10,231][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:24:10,231][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:24:10,231][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:24:10,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:24:10,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:24:10,233][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:24:10,233][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:24:10,233][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:24:10,235][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:24:10,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:24:10,236][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:24:10,251][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 18:24:10,252][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:24:10,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:24:10,252][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:24:10,252][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:24:10,252][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:24:10,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:24:10,253][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:24:10,254][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 18:24:10,254][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 18:24:10,254][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 18:24:10,254][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:24:10,254][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:24:10,254][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 18:24:10,255][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 18:24:10,255][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 18:24:10,255][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 18:24:10,255][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 18:24:10,255][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 18:24:10,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:24:10,256][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:26:44,664][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 18:26:44,665][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:26:44,666][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:26:44,666][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:26:44,666][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:26:44,666][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:26:44,667][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:26:44,667][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 18:26:44,670][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:26:44,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:26:44,671][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 18:26:44,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:26:44,671][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:26:44,701][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 18:26:44,703][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:26:44,703][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:26:44,704][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:26:44,704][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:26:44,704][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:26:44,706][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:26:44,707][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:26:44,708][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 18:26:44,708][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 18:26:44,708][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 18:26:44,710][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 18:26:44,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:26:44,713][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 18:26:44,763][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 18:26:44,768][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 18:26:44,771][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 18:26:44,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 18:26:44,772][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 18:26:44,773][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 18:26:44,774][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 18:26:44,775][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 18:26:44,779][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 18:26:44,779][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 18:26:44,779][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 18:26:44,779][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 18:26:44,779][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 18:26:44,779][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 18:26:44,780][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 18:26:44,781][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 18:26:44,782][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 18:26:44,782][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 18:26:44,783][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 18:26:44,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 18:26:44,786][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:44:47,511][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 22:44:47,512][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:44:47,512][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:44:47,512][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:44:47,512][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:44:47,513][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:44:47,513][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:44:47,513][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 22:44:47,514][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:44:47,514][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:44:47,515][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 22:44:47,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:44:47,515][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:44:47,538][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 22:44:47,539][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:44:47,539][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:44:47,539][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:44:47,539][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:44:47,539][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:44:47,540][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:44:47,540][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:44:47,540][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 22:44:47,540][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 22:44:47,540][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 22:44:47,542][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 22:44:47,544][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:44:47,544][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:44:47,557][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 22:44:47,558][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:44:47,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:44:47,558][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:44:47,558][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:44:47,558][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:44:47,560][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:44:47,560][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:44:47,561][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 22:44:47,562][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 22:44:47,562][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 22:44:47,563][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 22:44:47,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:44:47,563][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:31,112][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 22:46:31,113][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:31,113][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:31,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:31,114][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:31,114][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:31,115][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:31,115][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:31,116][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 22:46:31,116][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 22:46:31,116][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 22:46:31,119][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 22:46:31,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:31,120][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:31,133][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/users +[2026-02-19 22:46:31,134][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/admin/roles +[2026-02-19 22:46:31,134][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:31,135][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:31,136][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:31,136][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:31,136][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:31,136][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:31,137][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:31,137][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:31,137][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:31,142][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_users][Entry] +[2026-02-19 22:46:31,142][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Coherence:OK] +[2026-02-19 22:46:31,143][DEBUG][superset_tools_app] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Action] [api.admin.list_users][Exit] +[2026-02-19 22:46:31,144][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.admin.list_roles][Entry] +[2026-02-19 22:46:31,144][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Coherence:OK] +[2026-02-19 22:46:31,144][DEBUG][superset_tools_app] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Action] [api.admin.list_roles][Exit] +[2026-02-19 22:46:31,145][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/users +[2026-02-19 22:46:31,145][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/admin/roles +[2026-02-19 22:46:31,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:31,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:31,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:31,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:33,802][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 22:46:33,802][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:33,802][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:33,803][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:33,803][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:33,803][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:33,804][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:33,804][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 22:46:33,805][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:46:33,805][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:46:33,806][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 22:46:33,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:33,808][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:33,829][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 22:46:33,830][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:33,831][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:33,831][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:33,831][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:33,832][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:33,833][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:33,833][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:33,833][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 22:46:33,833][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 22:46:33,833][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 22:46:33,835][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 22:46:33,836][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:33,836][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:46:33,851][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 22:46:33,852][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:46:33,852][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:46:33,852][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:46:33,852][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:46:33,852][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:46:33,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:46:33,853][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:46:33,856][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 22:46:33,856][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 22:46:33,856][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 22:46:33,856][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:46:33,856][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:46:33,856][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 22:46:33,857][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 22:46:33,857][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 22:46:33,857][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 22:46:33,858][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 22:46:33,858][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 22:46:33,858][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:46:33,859][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:48:51,189][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 22:48:51,190][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:48:51,191][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:48:51,191][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:48:51,191][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:48:51,191][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:48:51,192][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:48:51,192][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:48:51,193][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 22:48:51,193][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 22:48:51,193][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 22:48:51,194][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 22:48:51,194][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 22:48:51,194][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:48:51,194][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:48:51,194][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 22:48:51,195][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:48:51,196][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:48:51,223][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 22:48:51,224][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:48:51,224][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:48:51,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:48:51,225][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:48:51,225][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:48:51,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:48:51,226][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:48:51,226][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 22:48:51,226][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 22:48:51,227][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 22:48:51,228][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 22:48:51,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:48:51,229][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:48:51,244][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 22:48:51,245][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:48:51,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:48:51,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:48:51,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:48:51,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:48:51,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:48:51,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:48:51,247][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 22:48:51,248][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 22:48:51,248][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 22:48:51,248][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:48:51,248][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:48:51,248][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 22:48:51,249][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 22:48:51,249][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 22:48:51,249][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 22:48:51,249][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 22:48:51,250][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 22:48:51,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:48:51,250][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:49:07,171][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-19 22:49:07,172][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:49:07,172][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:49:07,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:49:07,173][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:49:07,173][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:49:07,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:49:07,174][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:49:07,176][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-19 22:49:07,176][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-19 22:49:07,176][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-19 22:49:07,176][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-19 22:49:07,177][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-19 22:49:07,177][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:49:07,177][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:49:07,177][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-19 22:49:07,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:49:07,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:49:07,204][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-19 22:49:07,205][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:49:07,205][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:49:07,206][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:49:07,206][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:49:07,206][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:49:07,207][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:49:07,208][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:49:07,208][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-19 22:49:07,208][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 22:49:07,208][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 22:49:07,209][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-19 22:49:07,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:49:07,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 22:49:07,226][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-19 22:49:07,226][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 22:49:07,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 22:49:07,227][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 22:49:07,227][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 22:49:07,227][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 22:49:07,228][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 22:49:07,228][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-19 22:49:07,230][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-19 22:49:07,230][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-19 22:49:07,231][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-19 22:49:07,231][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-19 22:49:07,231][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-19 22:49:07,231][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-19 22:49:07,232][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 22:49:07,232][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:20:08,945][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 23:20:08,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:20:08,945][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:20:08,945][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-19 23:20:08,951][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:08,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,954][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:08,954][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,955][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,955][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 23:20:08,956][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:08,957][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:08,957][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:08,958][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:09,193][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,193][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:09,194][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:09,194][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-19 23:20:09,195][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-19 23:20:09,196][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:09,196][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:09,569][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:09,570][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:09,571][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-19 23:20:09,571][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-19 23:20:09,571][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-19 23:20:09,572][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-19 23:20:09,572][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-19 23:20:09,572][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:20:09,572][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-19 23:20:09,572][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-19 23:20:09,573][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-19 23:20:09,573][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-19 23:20:09,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-19 23:20:09,574][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-19 23:20:09,574][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-19 23:20:09,587][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-19 23:20:09,588][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:20:09,588][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 23:20:09,588][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 23:20:09,589][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-19 23:20:09,589][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-19 23:20:09,601][INFO][superset_tools_app] TaskManager initialized +[2026-02-19 23:20:09,601][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-19 23:20:09,602][INFO][superset_tools_app] SchedulerService initialized +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 23:20:09,602][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 23:20:09,603][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-19 23:20:09,603][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-19 23:20:09,603][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-19 23:20:09,603][INFO][superset_tools_app] ResourceService initialized +[2026-02-19 23:20:09,654][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-19 23:20:09,654][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-19 23:20:09,654][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-19 23:20:09,800][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-19 23:20:09,800][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-19 23:20:09,801][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-19 23:20:09,801][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-19 23:23:02,580][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-19 23:23:02,581][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:02,581][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-19 23:23:02,582][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-19 23:23:02,582][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:02,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:02,583][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:02,770][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-19 23:23:02,773][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-19 23:23:02,773][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-19 23:23:02,773][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-19 23:23:02,773][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-19 23:23:02,774][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-19 23:23:02,774][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-19T20:23:02.774221][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-19 23:23:02,774][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-19 23:23:02,774][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-19 23:23:02,774][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-19 23:23:02,775][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-19 23:23:02,780][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-19 23:23:02,780][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-19 23:23:02,780][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-19 23:23:02,780][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-19 23:23:02,780][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-19 23:23:02,781][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-19 23:23:02,781][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-19 23:23:02,781][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:02,782][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:02,789][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 23:23:02,790][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:02,790][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:02,790][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:02,790][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:02,790][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:02,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:02,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:02,791][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 23:23:02,791][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 23:23:02,791][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 23:23:02,793][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 23:23:02,794][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:02,794][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:02,813][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-19 23:23:02,814][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:02,814][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:02,814][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:02,815][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:02,815][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:02,815][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:02,815][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-19 23:23:02,816][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-19 23:23:02,816][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-19 23:23:02,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:02,817][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:03,073][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 23:23:03,075][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:03,075][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:03,076][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:03,076][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:03,076][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:03,077][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:03,078][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:23:03,079][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:03,079][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:03,080][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 23:23:03,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:03,081][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:03,090][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 23:23:03,091][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:03,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:03,091][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:03,091][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:03,091][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:03,092][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:03,092][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:23:03,095][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:23:03,095][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:23:03,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 23:23:03,096][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 23:23:03,096][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 23:23:03,103][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 23:23:03,103][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 23:23:03,103][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 23:23:03,103][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 23:23:03,103][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 23:23:03,103][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 23:23:03,104][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 23:23:03,104][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 23:23:03,104][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 23:23:03,104][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 23:23:04,002][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 23:23:04,002][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 23:23:04,002][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 23:23:04,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 23:23:04,002][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 23:23:04,613][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 23:23:04,614][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,614][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,614][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,614][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,614][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,614][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,615][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,617][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 23:23:04,617][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,621][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,621][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,622][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,622][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,622][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:04,622][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 23:23:04,622][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 23:23:04,622][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 23:23:04,623][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 23:23:04,623][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 23:23:04,623][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 23:23:04,623][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 23:23:04,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:04,624][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:53,719][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 23:23:53,719][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:53,720][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:53,720][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:53,720][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:53,721][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:53,723][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:53,724][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:53,724][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 23:23:53,724][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 23:23:53,724][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 23:23:53,726][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 23:23:53,727][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:53,727][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:53,748][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 23:23:53,749][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:53,749][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:53,749][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:53,750][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:53,750][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:53,751][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:53,751][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:53,753][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:23:53,754][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:53,754][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 23:23:53,754][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:53,755][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:23:53,768][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 23:23:53,768][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:23:53,769][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:23:53,769][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:23:53,769][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:23:53,769][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:23:53,772][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:23:53,773][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:23:53,775][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 23:23:53,776][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:23:53,776][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:23:53,777][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 23:23:53,777][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 23:23:53,785][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 23:23:53,786][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 23:23:53,786][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-19 23:23:54,158][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-19 23:23:54,158][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-19 23:23:54,158][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-19 23:23:54,158][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-19 23:23:54,158][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-19 23:23:54,418][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,418][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,418][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,419][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,419][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,419][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,419][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,420][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-19 23:23:54,420][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-19 23:23:54,427][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,427][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,428][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,428][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,428][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,428][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,429][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,429][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,429][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,430][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,430][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-19 23:23:54,430][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-19 23:23:54,431][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-19 23:23:54,431][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-19 23:23:54,431][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-19 23:23:54,431][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-19 23:23:54,431][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-19 23:23:54,431][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-19 23:23:54,433][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-19 23:23:54,433][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-19 23:23:54,433][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-19 23:23:54,433][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-19 23:23:54,434][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:23:54,434][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:25:34,471][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-19 23:25:34,471][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:25:34,471][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:25:34,471][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-19 23:25:34,472][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-19 23:25:34,473][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-19 23:25:34,475][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:25:34,476][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:25:34,490][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-19 23:25:34,491][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:25:34,492][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:25:34,493][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:25:34,493][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:25:34,493][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:25:34,494][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:25:34,494][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:25:34,496][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:25:34,497][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-19 23:25:34,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:25:34,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:25:34,497][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-19 23:25:34,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:25:34,497][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:25:34,498][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-19 23:25:34,500][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-19 23:25:34,500][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-19 23:25:34,511][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-19 23:25:34,513][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-19 23:25:34,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-19 23:25:34,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-19 23:25:34,514][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-19 23:25:34,514][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-19 23:25:34,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-19 23:25:34,515][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:25:34,517][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-19 23:25:34,517][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-19 23:25:34,517][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-19 23:25:34,522][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-19 23:25:34,523][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-19 23:25:34,523][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [NetworkError.__init__][Entry] +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Coherence:OK] +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Action] [NetworkError.__init__][Exit] +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:Failed] [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][ERROR][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,173][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 503: Failed to fetch dashboards: [NETWORK_FAILURE] Network or parsing error during authentication: HTTPSConnectionPool(host='superset.bebesh.ru', port=443): Max retries exceeded with url: /api/v1/security/login (Caused by NameResolutionError("HTTPSConnection(host='superset.bebesh.ru', port=443): Failed to resolve 'superset.bebesh.ru' ([Errno -3] Temporary failure in name resolution)")) | Context: {} +[2026-02-20 09:02:37,174][INFO][superset_tools_app] Response status: 503 for /api/dashboards +[2026-02-20 09:22:34,578][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-20 09:22:34,579][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-20 09:22:34,579][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-20 09:22:34,579][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-20 09:22:34,580][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-20 09:22:34,580][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-20 09:22:34,580][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-20 09:22:36,830][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 09:22:36,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:22:36,830][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:22:36,830][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:36,838][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,839][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,840][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,840][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,841][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 09:22:36,841][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:36,842][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:36,842][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:37,072][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:37,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:37,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:37,073][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 09:22:37,074][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-20 09:22:37,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 09:22:37,076][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:37,076][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:37,398][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:37,399][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:37,399][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:37,400][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-20 09:22:37,401][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-20 09:22:37,401][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-20 09:22:37,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-20 09:22:37,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-20 09:22:37,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-20 09:22:37,402][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-20 09:22:37,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-20 09:22:37,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:22:37,403][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-20 09:22:37,403][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 09:22:37,404][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 09:22:37,404][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:22:37,416][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 09:22:37,417][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:22:37,417][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-20 09:22:37,417][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-20 09:22:37,417][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-20 09:22:37,430][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-20 09:22:37,430][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-20 09:22:37,431][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-20 09:22:37,431][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-20 09:22:37,431][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-20 09:22:37,431][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-20 09:22:37,431][INFO][superset_tools_app] TaskManager initialized +[2026-02-20 09:22:37,431][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-20 09:22:37,432][INFO][superset_tools_app] SchedulerService initialized +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 09:22:37,432][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-20 09:22:37,432][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-20 09:22:37,432][INFO][superset_tools_app] ResourceService initialized +[2026-02-20 09:22:37,466][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-20 09:22:37,467][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 09:22:37,467][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-20 09:22:37,584][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-20 09:22:37,584][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-20 09:22:37,585][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-20 09:22:37,585][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-20 09:22:42,093][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 09:22:42,094][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:42,095][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:42,099][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:Failed] Signature has expired. +[2026-02-20 09:22:42,100][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:Failed] 401: Could not validate credentials +[2026-02-20 09:22:42,100][INFO][superset_tools_app] Response status: 401 for /api/auth/me +[2026-02-20 09:22:44,967][INFO][superset_tools_app] Incoming request: POST /api/auth/login +[2026-02-20 09:22:44,969][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:44,970][DEBUG][superset_tools_app] [api.auth.login][Entry] +[2026-02-20 09:22:44,970][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.authenticate_user][Entry] +[2026-02-20 09:22:44,970][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:44,971][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:44,972][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:45,158][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthRepository.update_last_login][Entry] +[2026-02-20 09:22:45,161][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Coherence:OK] +[2026-02-20 09:22:45,161][DEBUG][superset_tools_app] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Action] [AuthRepository.update_last_login][Exit] +[2026-02-20 09:22:45,161][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Coherence:OK] +[2026-02-20 09:22:45,161][DEBUG][superset_tools_app] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Action] [AuthService.authenticate_user][Exit] +[2026-02-20 09:22:45,162][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [log_security_event][Entry] LOGIN_SUCCESS:admin +[2026-02-20 09:22:45,162][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-20T06:22:45.162349][LOGIN_SUCCESS] User: admin Details: {'source': 'LOCAL'} +[2026-02-20 09:22:45,162][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-20 09:22:45,162][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-20 09:22:45,162][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [AuthService.create_session][Entry] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [create_access_token][Entry] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Coherence:OK] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Action] [create_access_token][Exit] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Coherence:OK] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Action] [AuthService.create_session][Exit] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Coherence:OK] +[2026-02-20 09:22:45,163][DEBUG][superset_tools_app] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Action] [api.auth.login][Exit] +[2026-02-20 09:22:45,164][INFO][superset_tools_app] Response status: 200 for /api/auth/login +[2026-02-20 09:22:45,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:45,164][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:45,169][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 09:22:45,169][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:45,169][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:45,170][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:45,170][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:45,170][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:45,171][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:45,171][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:45,171][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 09:22:45,171][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:22:45,171][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:22:45,173][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 09:22:45,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:45,174][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:45,191][INFO][superset_tools_app] Incoming request: GET /api/plugins +[2026-02-20 09:22:45,192][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:45,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:45,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:45,192][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:45,192][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:45,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:45,193][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:45,193][DEBUG][superset_tools_app] [list_plugins][Entry] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [get_all_plugin_configs][Entry] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Coherence:OK] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Action] [list_plugins][Exit] +[2026-02-20 09:22:45,194][INFO][superset_tools_app] Response status: 200 for /api/plugins +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:45,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:45,229][INFO][superset_tools_app] Incoming request: GET /api/settings/environments +[2026-02-20 09:22:45,230][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:45,231][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:45,231][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:45,231][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:45,231][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:45,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:45,232][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-20 09:22:45,233][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:22:45,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:22:45,234][INFO][superset_tools_app] Response status: 200 for /api/settings/environments +[2026-02-20 09:22:45,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:45,235][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:45,243][INFO][superset_tools_app] Incoming request: GET /api/dashboards +[2026-02-20 09:22:45,244][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:45,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:45,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:45,245][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:45,245][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:45,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:45,246][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:45,247][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-20 09:22:45,247][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-20 09:22:45,248][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-20 09:22:45,248][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:22:45,248][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:22:45,254][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 09:22:45,254][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:22:45,254][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:22:46,050][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:22:46,050][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:22:46,051][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:22:46,051][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:22:46,051][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 09:22:46,632][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,632][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,633][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,633][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,633][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,633][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,633][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-20 09:22:46,636][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-20 09:22:46,639][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,640][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,640][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,640][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,640][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,640][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,641][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,641][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,641][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:22:46,641][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-20 09:22:46,641][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-20 09:22:46,641][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-20 09:22:46,642][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-20 09:22:46,642][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:22:46,642][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:22:46,642][INFO][superset_tools_app] Response status: 200 for /api/dashboards +[2026-02-20 09:22:46,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:46,643][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:57,745][INFO][superset_tools_app] Incoming request: GET /api/llm/providers +[2026-02-20 09:22:57,746][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:57,746][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:57,746][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:57,747][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:57,747][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:57,747][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:57,747][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:57,748][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-20 09:22:57,748][INFO][superset_tools_app] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-20 09:22:57,748][DEBUG][superset_tools_app] [get_all_providers][Entry] +[2026-02-20 09:22:57,750][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-20 09:22:57,751][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-20 09:22:57,751][INFO][superset_tools_app] Response status: 200 for /api/llm/providers +[2026-02-20 09:22:57,752][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-20 09:22:57,752][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-20 09:22:57,753][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:57,753][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:57,758][INFO][superset_tools_app] Incoming request: POST /api/tasks +[2026-02-20 09:22:57,760][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:57,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:57,760][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:57,760][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:57,760][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:57,761][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:57,761][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:57,763][DEBUG][superset_tools_app] [create_task][Entry] +[2026-02-20 09:22:57,763][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-20 09:22:57,764][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:22:57,764][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:22:57,765][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,769][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:22:57,769][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:22:57,769][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 02519a08-aff8-4c7a-b7ed-33f3b451e540 created and scheduled for execution +[2026-02-20 09:22:57,769][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [TaskManager._run_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:22:57,770][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 02519a08-aff8-4c7a-b7ed-33f3b451e540 for plugin 'Dashboard LLM Validation' +[2026-02-20 09:22:57,770][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,778][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:22:57,778][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-20 09:22:57,779][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,780][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-20 09:22:57,781][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-20 09:22:57,781][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:22:57,781][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:22:57,781][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-20 09:22:57,781][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-20 09:22:57,782][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-20 09:22:57,782][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-20 09:22:57,782][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-20 09:22:57,782][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:22:57,783][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=11 +[2026-02-20 09:22:57,783][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 11 +[2026-02-20 09:22:57,784][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-20 09:22:57,784][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:57,785][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:57,874][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,875][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,875][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-20 09:22:57,875][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-20 09:22:57,876][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 (source=None, level=None) +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-20 09:22:57,876][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-20 09:22:57,876][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-20 09:22:57,880][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,880][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:22:57,880][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:22:57,880][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:22:57,880][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:22:57,881][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:22:57,881][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:22:57,881][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:22:57,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:22:57,885][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:22:57,889][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-20 09:22:57,890][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,890][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:22:57,890][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:22:57,890][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-20 09:22:57,890][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-20 09:22:57,890][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:57,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:22:57,892][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:22:58,256][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-20 09:22:58,312][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-20 09:22:59,419][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:22:59,424][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-20 09:22:59,424][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-20 09:23:00,651][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/llm/providers +[2026-02-20 09:23:00,652][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:00,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:00,652][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:00,652][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:00,652][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:00,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:00,653][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:00,653][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_db][Entry] +[2026-02-20 09:23:00,653][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [llm_routes][get_providers][Action] Fetching providers for user: admin +[2026-02-20 09:23:00,653][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_all_providers][Entry] +[2026-02-20 09:23:00,653][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-20 09:23:00,654][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-20 09:23:00,654][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/llm/providers +[2026-02-20 09:23:00,654][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Coherence:OK] +[2026-02-20 09:23:00,654][DEBUG][superset_tools_app] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Action] [get_db][Exit] +[2026-02-20 09:23:00,654][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:00,655][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:00,663][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: POST /api/tasks +[2026-02-20 09:23:00,664][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:00,664][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:00,664][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:00,664][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:00,664][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:00,665][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:00,666][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:00,666][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [create_task][Entry] +[2026-02-20 09:23:00,666][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [get_provider][Entry] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [TaskManager.create_task][Entry] plugin_id=llm_dashboard_validation +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [has_plugin][Entry] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Coherence:OK] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Action] [has_plugin][Exit] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [get_plugin][Entry] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:23:00,667][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,669][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:23:00,670][INFO][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] Task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee created and scheduled for execution +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Coherence:OK] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Action] [TaskManager.create_task][Exit] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Coherence:OK] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Action] [create_task][Exit] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager._run_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [get_plugin][Entry] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:23:00,670][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Starting execution of task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee for plugin 'Dashboard LLM Validation' +[2026-02-20 09:23:00,670][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [execute][Entry] plugin_id=llm_dashboard_validation +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_environment][Entry] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Coherence:OK] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Action] [get_environment][Exit] +[2026-02-20 09:23:00,672][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_provider][Entry] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_decrypted_api_key][Entry] +[2026-02-20 09:23:00,673][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_provider][Entry] +[2026-02-20 09:23:00,676][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Coherence:OK] +[2026-02-20 09:23:00,676][DEBUG][superset_tools_app] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Action] [get_provider][Exit] +[2026-02-20 09:23:00,676][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Provider found: 6c899741-4108-4196-aea4-f38ad2f0150e +[2026-02-20 09:23:00,676][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Encrypted API key length: 100 +[2026-02-20 09:23:00,676][INFO][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key] Decryption successful, key length: 8 +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Coherence:OK] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Action] [get_decrypted_api_key][Exit] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [get_config][Entry] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:00,677][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [capture_dashboard][Entry] dashboard_id=9 +[2026-02-20 09:23:00,677][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Capturing screenshot for dashboard 9 +[2026-02-20 09:23:00,678][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 201 for /api/tasks +[2026-02-20 09:23:00,679][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:00,679][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:00,687][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,687][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-20 09:23:00,688][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee (source=None, level=None) +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-20 09:23:00,688][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-20 09:23:00,688][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-20 09:23:00,689][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,689][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:00,689][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:00,691][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,692][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:00,692][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:00,692][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:00,692][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:00,692][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:00,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:00,693][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:00,694][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-20 09:23:00,694][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,695][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:00,695][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:00,695][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-20 09:23:00,695][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-20 09:23:00,695][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:00,696][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:00,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:01,081][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Browser context created successfully +[2026-02-20 09:23:01,099][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-20 09:23:01,115][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-20 09:23:01,137][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to login page: https://superset.bebesh.ru/login/ +[2026-02-20 09:23:01,145][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-20 09:23:01,152][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-20 09:23:01,152][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-20 09:23:01,205][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-20 09:23:01,238][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-20 09:23:01,424][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:01,428][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-20 09:23:01,429][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-20 09:23:02,373][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-20 09:23:02,381][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-20 09:23:02,382][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljkFuAzEIRe_idRf... +[2026-02-20 09:23:02,382][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/11/?standalone=true +[2026-02-20 09:23:02,501][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login page response status: 200 +[2026-02-20 09:23:02,518][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Attempting to find login form elements... +[2026-02-20 09:23:02,635][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input[name="username"]': 0 elements found +[2026-02-20 09:23:02,654][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Selector 'input#username': 1 elements found +[2026-02-20 09:23:02,654][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling username field with selector: input#username +[2026-02-20 09:23:02,711][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Filling password field with selector: input#password +[2026-02-20 09:23:02,749][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Clicking submit button with selector: button[type="submit"] +[2026-02-20 09:23:04,061][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Login successful. Current URL: https://superset.bebesh.ru/superset/welcome/ +[2026-02-20 09:23:04,065][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookies after login: 1 +[2026-02-20 09:23:04,065][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Cookie: name=session, domain=superset.bebesh.ru, value=.eJwljs2KAzEMg98l5x7... +[2026-02-20 09:23:04,065][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Navigating to dashboard: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-20 09:23:04,355][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:04,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:04,355][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:04,355][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:04,355][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:04,356][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:04,356][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:04,357][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:04,358][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:04,358][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:04,358][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:04,358][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:04,358][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:04,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:04,359][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-20 09:23:05,659][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 (source=None, level=None) +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-20 09:23:05,659][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-20 09:23:05,659][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-20 09:23:05,660][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,660][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:05,660][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:05,665][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,667][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:05,667][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:05,667][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:05,667][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:05,667][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:05,670][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:05,671][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-20 09:23:05,672][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-20 09:23:05,672][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:05,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:05,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:07,150][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/11/?standalone=true +[2026-02-20 09:23:07,186][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:07,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:07,187][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:07,187][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:07,187][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:07,188][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:07,188][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:07,191][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:07,192][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:07,192][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:07,192][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:07,192][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:07,192][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:07,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:07,194][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:07,200][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:07,201][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:07,201][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:07,201][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:07,201][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:07,203][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:07,203][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:07,208][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:07,208][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:07,208][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:07,208][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:07,209][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:07,209][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:07,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:07,211][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:07,439][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-20 09:23:07,455][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-20 09:23:07,474][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-20 09:23:07,475][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-20 09:23:07,484][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-20 09:23:07,484][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-20 09:23:07,862][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee (source=None, level=None) +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-20 09:23:07,862][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-20 09:23:07,863][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,863][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,863][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-20 09:23:07,863][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-20 09:23:07,865][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,865][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:07,865][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:07,867][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,868][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:07,869][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:07,869][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:07,870][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:07,870][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:07,871][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:07,872][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:07,875][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-20 09:23:07,875][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,875][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:07,876][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:07,876][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-20 09:23:07,876][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-20 09:23:07,876][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:07,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:07,878][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:08,393][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-20 09:23:08,607][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:08,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:08,608][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:08,608][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:08,608][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:08,610][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:08,610][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:08,612][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:08,614][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:08,615][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:08,620][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:08,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:08,621][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:08,621][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:08,621][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:08,624][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:08,624][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:08,627][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:08,627][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:08,628][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:08,628][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:08,628][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:08,628][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:08,630][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:08,631][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:09,533][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard navigation response status: 200, URL: https://superset.bebesh.ru/superset/dashboard/9/?standalone=true +[2026-02-20 09:23:09,560][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Dashboard container loaded +[2026-02-20 09:23:09,575][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Loading indicators hidden +[2026-02-20 09:23:09,587][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Chart content detected +[2026-02-20 09:23:09,587][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Waiting for all charts to have rendered content... +[2026-02-20 09:23:09,595][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] All charts have rendered content +[2026-02-20 09:23:09,595][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Scrolling to trigger lazy loading... +[2026-02-20 09:23:10,300][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Final stabilization delay... +[2026-02-20 09:23:12,187][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-20 09:23:12,188][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:12,188][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:12,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:12,189][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:12,189][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:12,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:12,190][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:12,190][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-20 09:23:12,190][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:12,190][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:12,192][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-20 09:23:12,193][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:12,193][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:12,206][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-20 09:23:12,206][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:12,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:12,207][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:12,207][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:12,207][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:12,208][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:12,209][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:12,209][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:12,209][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:12,210][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:12,210][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:12,224][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/datasets +[2026-02-20 09:23:12,225][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:12,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:12,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:12,226][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:12,226][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:12,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:12,227][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:12,228][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_datasets][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-20 09:23:12,228][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_environments][Entry] +[2026-02-20 09:23:12,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:12,228][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:12,228][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets_with_status][Entry] env=ss1 +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-20 09:23:12,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [__init__][Entry] +[2026-02-20 09:23:12,229][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][Entry] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:23:12,229][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:23:12,234][WARNING][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [SupersetClient.get_datasets_summary][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [get_datasets][Entry] +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Enter] Fetching datasets. +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_validate_query_params][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [_fetch_all_pages][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 09:23:12,235][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:23:12,235][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:23:12,680][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:23:12,680][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:23:12,680][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:23:12,681][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:23:12,681][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 26 +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 09:23:12,887][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] Found 26 datasets. +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Coherence:OK] +[2026-02-20 09:23:12,887][DEBUG][superset_tools_app] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Action] [SupersetClient.get_datasets_summary][Exit] +[2026-02-20 09:23:12,888][INFO][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [ResourceService][Coherence:OK] Fetched 26 datasets with status +[2026-02-20 09:23:12,888][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Coherence:OK] +[2026-02-20 09:23:12,888][DEBUG][superset_tools_app] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Action] [get_datasets_with_status][Exit] +[2026-02-20 09:23:12,889][INFO][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] Returning 10 datasets (page 1/3, total: 26) +[2026-02-20 09:23:12,889][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Coherence:OK] +[2026-02-20 09:23:12,889][DEBUG][superset_tools_app] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Action] [get_datasets][Exit] +[2026-02-20 09:23:12,889][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/datasets +[2026-02-20 09:23:12,890][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:12,890][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:16,058][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings +[2026-02-20 09:23:16,059][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:16,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:16,059][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:16,059][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:16,059][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:16,060][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:16,060][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_settings][Entry] +[2026-02-20 09:23:16,061][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_config][Entry] +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:23:16,061][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:23:16,062][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings +[2026-02-20 09:23:16,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:16,063][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:16,082][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-20 09:23:16,083][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:16,083][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:16,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:16,083][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:16,084][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:16,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:16,084][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:16,084][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-20 09:23:16,085][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:16,085][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:16,086][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-20 09:23:16,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:16,086][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:16,100][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/consolidated +[2026-02-20 09:23:16,101][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:16,101][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:16,102][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:16,102][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:16,102][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:16,103][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:16,103][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:16,104][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_consolidated_settings][Entry] +[2026-02-20 09:23:16,104][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-20 09:23:16,104][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-20 09:23:16,104][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:23:16,104][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:23:16,104][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-20 09:23:16,105][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-20 09:23:16,105][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-20 09:23:16,105][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-20 09:23:16,105][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-20 09:23:16,105][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/consolidated +[2026-02-20 09:23:16,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:16,106][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:23,398][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 0 +[2026-02-20 09:23:23,409][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-20 09:23:23,419][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 1 +[2026-02-20 09:23:23,428][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-20 09:23:23,436][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 2 +[2026-02-20 09:23:23,454][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-20 09:23:23,462][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 3 +[2026-02-20 09:23:23,472][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: Overview +[2026-02-20 09:23:23,484][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🚀 Aspiring Developers +[2026-02-20 09:23:23,893][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-20 09:23:23,894][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:23,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:23,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:23,894][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:23,894][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:23,896][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:23,896][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:23,896][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-20 09:23:23,896][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:23,896][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:23,898][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-20 09:23:23,898][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:23,899][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:23,914][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/settings/environments +[2026-02-20 09:23:23,915][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:23,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:23,915][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:23,915][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:23,915][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:23,916][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:23,916][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:23,917][INFO][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] Fetching environments +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:23,917][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:23,918][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/settings/environments +[2026-02-20 09:23:23,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:23,919][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:23,927][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/dashboards +[2026-02-20 09:23:23,928][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:23,928][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:23,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:23,929][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:23,929][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:23,930][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:23,930][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:23,930][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1, search=None, page=1, page_size=10 +[2026-02-20 09:23:23,930][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [TaskManager.get_all_tasks][Entry] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Coherence:OK] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Action] [TaskManager.get_all_tasks][Exit] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards_with_status][Entry] env=ss1 +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-20 09:23:23,931][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [__init__][Entry] +[2026-02-20 09:23:23,931][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:23,931][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][Entry] +[2026-02-20 09:23:23,932][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:23:23,932][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:23:23,936][WARNING][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:23:23,936][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:23:23,936][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:23:23,936][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-20 09:23:23,936][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-20 09:23:23,937][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 09:23:23,937][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:23:23,937][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:23:23,937][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:23:23,937][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:23:26,907][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:23:26,907][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:23:26,907][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:23:26,907][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:23:26,907][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:23:27,093][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 09:23:27,094][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,094][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 13 does not exist +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 13 not found +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,094][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,095][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 2 does not exist +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 2 not found +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,095][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 9 does not exist +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 9 not found +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,095][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 10 does not exist +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 10 not found +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,095][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:OK] +[2026-02-20 09:23:27,096][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Exit] +[2026-02-20 09:23:27,101][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,101][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,101][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,101][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,101][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 1 does not exist +[2026-02-20 09:23:27,101][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 1 not found +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,102][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 4 does not exist +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 4 not found +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,102][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 3 does not exist +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 3 not found +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,102][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 11 does not exist +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 11 not found +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,102][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 8 does not exist +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 8 not found +[2026-02-20 09:23:27,102][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,103][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 7 does not exist +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 7 not found +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,103][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 6 does not exist +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 6 not found +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [GitService.get_repo][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService._get_repo_path][Entry] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Coherence:OK] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Action] [GitService._get_repo_path][Exit] +[2026-02-20 09:23:27,103][ERROR][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [get_repo][Coherence:Failed] Repository for dashboard 5 does not exist +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Action] [GitService.get_repo][Coherence:Failed] 404: Repository for dashboard 5 not found +[2026-02-20 09:23:27,103][INFO][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [ResourceService][Coherence:OK] Fetched 13 dashboards with status +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Coherence:OK] +[2026-02-20 09:23:27,103][DEBUG][superset_tools_app] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Action] [get_dashboards_with_status][Exit] +[2026-02-20 09:23:27,105][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] Returning 10 dashboards (page 1/2, total: 13) +[2026-02-20 09:23:27,105][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:23:27,105][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:23:27,106][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/dashboards +[2026-02-20 09:23:27,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:27,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:27,115][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 0 +[2026-02-20 09:23:27,122][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:27,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:27,129][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:27,129][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:27,129][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:27,135][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 💻 Current Developers +[2026-02-20 09:23:27,136][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:27,136][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:27,141][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-20 09:23:27,147][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:27,148][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:27,148][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:27,148][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:27,148][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:27,148][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:27,158][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:27,158][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:27,166][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-20 09:23:27,180][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-20 09:23:27,195][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-20 09:23:27,209][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-20 09:23:27,226][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-20 09:23:27,244][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🎯 Sales Overview +[2026-02-20 09:23:27,279][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-20 09:23:28,522][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [websocket_endpoint][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Coherence:OK] +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Action] [websocket_endpoint][Exit] +[2026-02-20 09:23:28,523][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] WebSocket connection accepted for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 (source=None, level=None) +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.subscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Coherence:OK] +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Action] [TaskManager.subscribe_logs][Exit] +[2026-02-20 09:23:28,523][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Starting log stream for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Coherence:OK] +[2026-02-20 09:23:28,523][DEBUG][superset_tools_app] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Action] [TaskManager.get_task_logs][Exit] +[2026-02-20 09:23:28,524][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,525][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:28,525][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:28,537][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,539][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:28,539][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:28,540][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:28,540][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:28,540][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:28,541][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:28,541][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_task][Entry] +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [TaskManager.get_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Coherence:OK] +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Action] [TaskManager.get_task][Exit] +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Coherence:OK] +[2026-02-20 09:23:28,543][DEBUG][superset_tools_app] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Action] [get_task][Exit] +[2026-02-20 09:23:28,544][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/tasks/02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:28,546][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:28,546][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:31,213][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-20 09:23:31,293][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🚀 Aspiring Developers +[2026-02-20 09:23:32,780][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:32,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:32,780][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:32,780][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:32,780][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:32,781][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:32,781][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:32,782][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:32,783][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:32,783][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:32,789][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:32,789][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:32,789][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:32,790][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:32,790][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:32,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:32,791][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:32,794][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_tasks][Entry] +[2026-02-20 09:23:32,794][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 09:23:32,794][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 09:23:32,794][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 09:23:32,794][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 09:23:32,795][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 09:23:32,797][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:32,797][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:33,603][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 3 +[2026-02-20 09:23:33,635][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 3 +[2026-02-20 09:23:34,935][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-20 09:23:35,005][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 💻 Current Developers +[2026-02-20 09:23:36,108][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-20 09:23:36,110][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:36,110][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:36,111][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:36,111][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:36,111][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:36,112][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:36,112][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:36,112][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-20 09:23:36,112][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:36,112][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:36,114][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-20 09:23:36,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:36,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:36,136][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments +[2026-02-20 09:23:36,137][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/storage/files +[2026-02-20 09:23:36,138][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:36,138][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:36,139][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:36,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:36,140][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:36,141][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:36,142][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:36,143][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [list_files][Entry] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 09:23:36,144][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-20 09:23:36,144][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 09:23:36,145][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-20 09:23:36,145][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-20 09:23:36,145][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-20 09:23:36,145][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-20 09:23:36,145][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/storage/files +[2026-02-20 09:23:36,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:36,146][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:36,147][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:36,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-20 09:23:36,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:36,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:36,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:36,148][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:36,148][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments +[2026-02-20 09:23:36,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:36,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:37,174][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 2 +[2026-02-20 09:23:37,244][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 3 +[2026-02-20 09:23:38,399][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🧭 Exploratory +[2026-02-20 09:23:38,469][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🚀 Aspiring Developers +[2026-02-20 09:23:40,666][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 2 tabs at depth 1 +[2026-02-20 09:23:40,689][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 2 +[2026-02-20 09:23:41,822][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 983 +[2026-02-20 09:23:41,826][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-20 09:23:41,855][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 💻 Current Developers +[2026-02-20 09:23:41,947][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-20 09:23:41,948][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-20 09:23:41,948][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:41,948][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-20 09:23:41,949][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:23:41,949][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:23:41,952][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:23:41,952][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:23:41,952][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:23:41,952][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-20 09:23:41,953][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:23:41,953][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:23:41,953][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:23:41,953][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:23:42,344][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:23:42,344][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:23:42,344][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:23:42,344][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:23:42,344][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-20 09:23:42,486][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-20 09:23:42,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:42,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:42,499][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:42,499][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-20 09:23:42,543][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x786 to 1024x786 +[2026-02-20 09:23:42,547][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 58.34 KB +[2026-02-20 09:23:42,549][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-20 09:23:42,549][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-20 09:23:42,549][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-20 09:23:42,549][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-20 09:23:42,549][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-20 09:23:42,692][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-20 09:23:42,692][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-20 09:23:42,692][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-20 09:23:43,320][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:43,320][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:43,320][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:43,320][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-20 09:23:43,320][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-20 09:23:43,320][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,320][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,321][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,323][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-20 09:23:43,324][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-20 09:23:43,324][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee completed successfully +[2026-02-20 09:23:43,324][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,324][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:43,324][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:43,324][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,325][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-20 09:23:43,325][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-20 09:23:43,325][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=84fe3ff4-0250-4148-8f9e-6ac9aa8603ee +[2026-02-20 09:23:43,327][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:23:43,327][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:23:43,327][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 84fe3ff4-0250-4148-8f9e-6ac9aa8603ee execution finished with status: TaskStatus.SUCCESS +[2026-02-20 09:23:43,327][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-20 09:23:43,327][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-20 09:23:44,712][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 2 +[2026-02-20 09:23:45,859][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 🚀 Aspiring Developers +[2026-02-20 09:23:47,001][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/auth/me +[2026-02-20 09:23:47,001][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:47,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:47,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:47,002][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:47,002][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:47,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:47,003][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:47,003][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [api.auth.me][Entry] +[2026-02-20 09:23:47,003][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:47,003][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:47,005][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/auth/me +[2026-02-20 09:23:47,007][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:47,007][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:47,021][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments +[2026-02-20 09:23:47,022][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:47,022][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:47,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:47,023][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:47,023][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:47,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:47,024][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:47,025][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_environments][Entry] +[2026-02-20 09:23:47,025][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-20 09:23:47,025][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:47,026][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:47,026][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:47,026][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:47,026][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments +[2026-02-20 09:23:47,026][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:47,026][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:47,033][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Incoming request: GET /api/environments/ss1/dashboards +[2026-02-20 09:23:47,034][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:47,034][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:47,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:47,034][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:47,034][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:47,035][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:47,036][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [get_dashboards][Entry] env_id=ss1 +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [__init__][Entry] +[2026-02-20 09:23:47,038][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [__init__][Entry] +[2026-02-20 09:23:47,038][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:47,038][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [_init_session][Entry] +[2026-02-20 09:23:47,039][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:23:47,039][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:23:47,044][WARNING][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:23:47,044][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:23:47,044][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:23:47,044][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-20 09:23:47,044][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-20 09:23:47,044][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-20 09:23:47,044][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 09:23:47,045][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:23:47,045][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:23:47,045][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:23:47,045][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:23:48,512][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:23:48,512][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:23:48,512][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:23:48,512][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:23:48,512][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 09:23:48,706][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-20 09:23:48,706][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-20 09:23:48,708][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] Response status: 200 for /api/environments/ss1/dashboards +[2026-02-20 09:23:48,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:48,712][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:48,715][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 1 +[2026-02-20 09:23:49,903][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Switching to tab: 💻 Current Developers +[2026-02-20 09:23:52,135][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG][TabSwitching] Found 3 tabs at depth 1 +[2026-02-20 09:23:53,334][INFO][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Calculated full height: 1826 +[2026-02-20 09:23:53,337][ERROR][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [DEBUG] Full-page/Tab capture failed: Page.evaluate: SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '.chart-container:visible, .slice_container:visible' is not a valid selector. + at eval (eval at evaluate (:290:30), :6:53) + at UtilityScript.evaluate (:297:18) + at UtilityScript. (:1:44) +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Coherence:OK] +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Action] [capture_dashboard][Exit] +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-20 09:23:53,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:53,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [__init__][Entry] +[2026-02-20 09:23:53,506][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][Entry] +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:23:53,506][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:23:53,510][WARNING][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [_init_session][State] SSL verification disabled. +[2026-02-20 09:23:53,510][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:23:53,510][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [request][Entry] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [headers][Entry] +[2026-02-20 09:23:53,511][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:23:53,511][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:23:53,511][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:23:53,511][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:23:53,902][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:23:53,902][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:23:53,902][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:23:53,902][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:23:53,902][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:23:54,059][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Initializing LLM client: +[2026-02-20 09:23:54,060][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Provider Type: LLMProviderType.OPENROUTER +[2026-02-20 09:23:54,060][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Base URL: https://openrouter.ai/api/v1 +[2026-02-20 09:23:54,060][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] Default Model: moonshotai/kimi-k2.5 +[2026-02-20 09:23:54,060][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key (first 8 chars): EMPTY_OR_NONE... +[2026-02-20 09:23:54,060][INFO][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [LLMClient.__init__] API Key Length: 8 +[2026-02-20 09:23:54,065][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,066][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,066][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,066][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [analyze_dashboard][Entry] +[2026-02-20 09:23:54,122][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Resized image from 1024x1432 to 1024x1432 +[2026-02-20 09:23:54,128][INFO][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Optimized image size: 83.00 KB +[2026-02-20 09:23:54,129][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [get_json_completion][Entry] +[2026-02-20 09:23:54,129][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Attempting LLM call with JSON mode for model: moonshotai/kimi-k2.5 +[2026-02-20 09:23:54,129][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Base URL being used: https://openrouter.ai/api/v1 +[2026-02-20 09:23:54,129][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Number of messages: 1 +[2026-02-20 09:23:54,129][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] API Key present: True +[2026-02-20 09:23:54,130][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-20 09:23:54,130][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-20 09:23:54,130][INFO][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] WebSocket connection disconnected for task 02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [TaskManager.unsubscribe_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Coherence:OK] +[2026-02-20 09:23:54,130][DEBUG][superset_tools_app] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Action] [TaskManager.unsubscribe_logs][Exit] +[2026-02-20 09:23:54,766][ERROR][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion] Authentication error: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Action] [get_json_completion][Coherence:Failed] Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:54,766][ERROR][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard] Failed to get analysis: Error code: 401 - {'error': {'message': 'Missing Authentication header', 'code': 401}} +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Coherence:OK] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Action] [analyze_dashboard][Exit] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,766][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,768][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Coherence:OK] +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [execute][Action] [execute][Action] [execute][Action] [execute][Action] [execute][Exit] +[2026-02-20 09:23:54,769][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 02519a08-aff8-4c7a-b7ed-33f3b451e540 completed successfully +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._add_log][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Coherence:OK] +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Action] [TaskManager._add_log][Exit] +[2026-02-20 09:23:54,769][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskLogPersistenceService.add_logs][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,772][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Coherence:OK] +[2026-02-20 09:23:54,772][DEBUG][superset_tools_app] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Action] [TaskLogPersistenceService.add_logs][Exit] +[2026-02-20 09:23:54,772][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskPersistenceService.persist_task][Entry] task_id=02519a08-aff8-4c7a-b7ed-33f3b451e540 +[2026-02-20 09:23:54,775][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Coherence:OK] +[2026-02-20 09:23:54,775][DEBUG][superset_tools_app] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Action] [TaskPersistenceService.persist_task][Exit] +[2026-02-20 09:23:54,775][INFO][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] Task 02519a08-aff8-4c7a-b7ed-33f3b451e540 execution finished with status: TaskStatus.SUCCESS +[2026-02-20 09:23:54,775][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Coherence:OK] +[2026-02-20 09:23:54,775][DEBUG][superset_tools_app] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Action] [TaskManager._run_task][Exit] +[2026-02-20 09:23:56,539][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 09:23:56,539][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:56,540][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:56,541][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:56,541][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:56,541][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:56,542][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:56,542][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:56,542][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 09:23:56,542][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:23:56,542][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:23:56,544][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 09:23:56,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:56,545][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:23:56,558][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-20 09:23:56,559][INFO][superset_tools_app] Incoming request: GET /api/storage/files +[2026-02-20 09:23:56,559][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:23:56,559][DEBUG][superset_tools_app] [decode_token][Entry] +[2026-02-20 09:23:56,559][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Entry] +[2026-02-20 09:23:56,560][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:56,560][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:56,560][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:23:56,560][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:56,560][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:23:56,561][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:23:56,563][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-20 09:23:56,563][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-20 09:23:56,563][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:56,563][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:56,563][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [list_files][Entry] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [get_plugin][Entry] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Action] [get_plugin][Exit] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [StoragePlugin:list_files][Entry] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 09:23:56,564][INFO][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Listing files in root: /home/busya/dev/ss-tools-storage, category: FileCategory.BACKUP, subpath: None +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin][Action] Scanning directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Action] [StoragePlugin:list_files][Exit] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Coherence:OK] +[2026-02-20 09:23:56,564][DEBUG][superset_tools_app] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Action] [list_files][Exit] +[2026-02-20 09:23:56,565][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-20 09:23:56,565][INFO][superset_tools_app] Response status: 200 for /api/storage/files +[2026-02-20 09:23:56,566][DEBUG][superset_tools_app] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:56,566][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:23:56,566][DEBUG][superset_tools_app] [get_auth_db][Exit] +[2026-02-20 09:23:56,566][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:24:07,677][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 09:24:07,678][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:24:07,678][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:24:07,679][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:24:07,679][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:24:07,679][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:24:07,679][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:24:07,679][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:24:07,680][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 09:24:07,680][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 09:24:07,680][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 09:24:07,681][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 09:24:07,682][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:24:07,682][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:24:07,696][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-20 09:24:07,696][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:24:07,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:24:07,697][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:24:07,697][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:24:07,697][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:24:07,698][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:24:07,698][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:24:07,699][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:24:07,699][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-20 09:24:07,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:24:07,700][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 09:24:07,707][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards +[2026-02-20 09:24:07,708][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 09:24:07,708][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 09:24:07,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 09:24:07,708][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 09:24:07,708][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 09:24:07,709][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 09:24:07,709][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 09:24:07,711][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 09:24:07,711][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 09:24:07,711][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-20 09:24:07,712][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 09:24:07,712][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 09:24:07,715][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-20 09:24:07,715][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 09:24:07,715][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 09:24:07,715][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-20 09:24:07,716][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 09:24:07,716][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 09:24:07,716][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 09:24:07,716][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 09:24:07,716][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 09:24:08,121][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 09:24:08,121][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 09:24:08,121][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 09:24:08,121][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 09:24:08,121][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 09:24:08,316][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-20 09:24:08,316][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 09:24:08,316][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 09:24:08,316][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-20 09:24:08,316][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 09:24:08,317][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 09:24:08,317][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-20 09:24:08,317][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-20 09:24:08,318][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards +[2026-02-20 09:24:08,319][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 09:24:08,319][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:34,569][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 10:07:34,569][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:34,569][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:34,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:34,570][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:34,570][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:34,572][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:34,572][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:34,572][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 10:07:34,572][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 10:07:34,572][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 10:07:34,573][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 10:07:34,574][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:34,575][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:34,589][INFO][superset_tools_app] Incoming request: GET /api/environments +[2026-02-20 10:07:34,590][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:34,590][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:34,590][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:34,590][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:34,590][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:34,591][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:34,591][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Entry] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Entry] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:07:34,592][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:07:34,592][INFO][superset_tools_app] Response status: 200 for /api/environments +[2026-02-20 10:07:34,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:34,593][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:34,600][INFO][superset_tools_app] Incoming request: GET /api/environments/ss1/dashboards +[2026-02-20 10:07:34,600][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:34,601][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:34,601][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:34,602][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:34,602][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:34,603][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:34,603][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_dashboards][Entry] env_id=ss1 +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_environments][Entry] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 10:07:34,605][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 10:07:34,606][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env ss1. +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 10:07:34,606][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [APIClient.__init__][Entry] Initializing APIClient. +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [_init_session][Entry] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Coherence:OK] +[2026-02-20 10:07:34,606][DEBUG][superset_tools_app] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Action] [_init_session][Exit] +[2026-02-20 10:07:34,612][WARNING][superset_tools_app] [_init_session][State] SSL verification disabled. +[2026-02-20 10:07:34,612][INFO][superset_tools_app] [APIClient.__init__][Exit] APIClient initialized. +[2026-02-20 10:07:34,612][INFO][superset_tools_app] [SupersetClient.__init__][Exit] SupersetClient initialized. +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Entry] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [get_dashboards][Entry] +[2026-02-20 10:07:34,612][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Enter] Fetching dashboards. +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_validate_query_params][Entry] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Coherence:OK] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Action] [_validate_query_params][Exit] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [_fetch_all_pages][Entry] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][Entry] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Coherence:OK] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Action] [fetch_paginated_data][Exit] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [request][Entry] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Coherence:OK] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [request][Action] [request][Action] [request][Action] [request][Action] [request][Exit] +[2026-02-20 10:07:34,612][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [headers][Entry] +[2026-02-20 10:07:34,613][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [authenticate][Entry] +[2026-02-20 10:07:34,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Enter] Authenticating to https://superset.bebesh.ru/api/v1 +[2026-02-20 10:07:34,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Login URL: https://superset.bebesh.ru/api/v1/security/login +[2026-02-20 10:07:34,613][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Debug] Auth payload: {'username': 'admin', 'password': '******', 'provider': 'db', 'refresh': 'true'} +[2026-02-20 10:07:35,725][INFO][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] Authenticated successfully. +[2026-02-20 10:07:35,726][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Coherence:OK] +[2026-02-20 10:07:35,726][DEBUG][superset_tools_app] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Action] [authenticate][Exit] +[2026-02-20 10:07:35,726][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Coherence:OK] +[2026-02-20 10:07:35,726][DEBUG][superset_tools_app] [headers][Action] [headers][Action] [headers][Action] [headers][Action] [headers][Exit] +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [fetch_paginated_data][State] Total count resolved from first page: 13 +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Coherence:OK] +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Action] [_fetch_all_pages][Exit] +[2026-02-20 10:07:36,212][INFO][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] Found 13 dashboards. +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Coherence:OK] +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Action] [get_dashboards][Exit] +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Coherence:OK] +[2026-02-20 10:07:36,212][DEBUG][superset_tools_app] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Action] [SupersetClient.get_dashboards_summary][Exit] +[2026-02-20 10:07:36,213][INFO][superset_tools_app] Response status: 200 for /api/environments/ss1/dashboards +[2026-02-20 10:07:36,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:36,213][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:39,113][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-20 10:07:39,115][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:39,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:39,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:39,115][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:39,115][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:39,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:39,116][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_settings][Entry] +[2026-02-20 10:07:39,118][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_config][Entry] +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:07:39,118][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:07:39,118][INFO][superset_tools_app] Response status: 200 for /api/settings +[2026-02-20 10:07:39,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:39,119][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:39,143][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 10:07:39,144][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:39,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:39,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:39,145][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:39,145][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:39,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:39,146][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:39,147][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 10:07:39,147][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 10:07:39,147][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 10:07:39,149][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 10:07:39,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:39,149][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:07:39,166][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated +[2026-02-20 10:07:39,167][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:07:39,168][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:07:39,168][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:07:39,168][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:07:39,168][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:07:39,171][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:07:39,172][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:07:39,174][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] +[2026-02-20 10:07:39,174][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-20 10:07:39,174][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-20 10:07:39,174][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:07:39,174][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:07:39,175][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-20 10:07:39,175][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-20 10:07:39,175][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-20 10:07:39,176][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-20 10:07:39,176][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-20 10:07:39,176][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated +[2026-02-20 10:07:39,178][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:07:39,179][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:48:24,233][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:48:24,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:48:24,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:48:24,234][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:48:24,234][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:48:24,235][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:48:24,236][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:48:24,239][DEBUG][superset_tools_app] [list_tasks][Entry] +[2026-02-20 10:48:24,239][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [TaskManager.get_tasks][Entry] +[2026-02-20 10:48:24,239][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Coherence:OK] +[2026-02-20 10:48:24,239][DEBUG][superset_tools_app] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Action] [TaskManager.get_tasks][Exit] +[2026-02-20 10:48:24,240][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Coherence:OK] +[2026-02-20 10:48:24,240][DEBUG][superset_tools_app] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Action] [list_tasks][Exit] +[2026-02-20 10:48:24,241][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:48:24,242][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:48:27,635][INFO][superset_tools_app] Incoming request: GET /api/settings +[2026-02-20 10:48:27,636][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:48:27,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:48:27,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:48:27,636][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:48:27,636][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:48:27,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:48:27,637][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_settings][Entry] +[2026-02-20 10:48:27,638][INFO][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Entry] Fetching all settings +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Coherence:OK] +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Action] [get_settings][Exit] +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_config][Entry] +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:48:27,638][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:48:27,638][INFO][superset_tools_app] Response status: 200 for /api/settings +[2026-02-20 10:48:27,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:48:27,639][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:48:27,657][INFO][superset_tools_app] Incoming request: GET /api/auth/me +[2026-02-20 10:48:27,657][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:48:27,658][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:48:27,658][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:48:27,658][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:48:27,658][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:48:27,659][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:48:27,659][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:48:27,660][DEBUG][superset_tools_app] [api.auth.me][Entry] +[2026-02-20 10:48:27,660][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Coherence:OK] +[2026-02-20 10:48:27,660][DEBUG][superset_tools_app] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Action] [api.auth.me][Exit] +[2026-02-20 10:48:27,661][INFO][superset_tools_app] Response status: 200 for /api/auth/me +[2026-02-20 10:48:27,662][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:48:27,662][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:48:27,674][INFO][superset_tools_app] Incoming request: GET /api/settings/consolidated +[2026-02-20 10:48:27,674][DEBUG][superset_tools_app] [get_auth_db][Entry] +[2026-02-20 10:48:27,674][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [decode_token][Entry] +[2026-02-20 10:48:27,675][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Coherence:OK] +[2026-02-20 10:48:27,675][DEBUG][superset_tools_app] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Action] [decode_token][Exit] +[2026-02-20 10:48:27,675][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [AuthRepository.get_user_by_username][Entry] +[2026-02-20 10:48:27,682][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Coherence:OK] +[2026-02-20 10:48:27,683][DEBUG][superset_tools_app] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Action] [AuthRepository.get_user_by_username][Exit] +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_consolidated_settings][Entry] +[2026-02-20 10:48:27,684][INFO][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Entry] Fetching all consolidated settings +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_config][Entry] +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_all_providers][Entry] +[2026-02-20 10:48:27,684][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-20 10:48:27,685][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-20 10:48:27,685][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Coherence:OK] +[2026-02-20 10:48:27,685][DEBUG][superset_tools_app] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Action] [get_consolidated_settings][Exit] +[2026-02-20 10:48:27,685][INFO][superset_tools_app] Response status: 200 for /api/settings/consolidated +[2026-02-20 10:48:27,686][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Coherence:OK] +[2026-02-20 10:48:27,686][DEBUG][superset_tools_app] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Action] [get_auth_db][Exit] +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-20 10:53:40,957][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-20 10:53:40,957][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-20 10:53:41,740][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:53:41,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:53:41,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:53:41,740][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-20 10:53:41,744][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:41,745][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,746][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:41,746][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,747][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:41,747][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:53:41,748][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:41,749][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:41,749][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:42,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:42,062][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:42,062][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:42,062][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:53:42,063][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:53:42,064][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:42,064][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:42,065][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:42,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:42,354][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-20 10:53:42,354][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-20 10:53:42,355][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-20 10:53:42,355][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-20 10:53:42,355][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-20 10:53:42,355][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-20 10:53:42,356][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:53:42,356][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:53:42,356][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:53:42,356][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:53:42,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:53:42,364][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:53:42,364][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:53:42,364][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:53:42,365][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:53:42,366][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:53:42,366][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-20 10:53:42,366][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-20 10:53:42,366][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-20 10:53:42,367][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-20 10:53:42,380][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-20 10:53:42,380][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-20 10:53:42,381][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-20 10:53:42,381][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-20 10:53:42,381][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-20 10:53:42,381][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-20 10:53:42,381][INFO][superset_tools_app] TaskManager initialized +[2026-02-20 10:53:42,381][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-20 10:53:42,382][INFO][superset_tools_app] SchedulerService initialized +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:53:42,382][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-20 10:53:42,382][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-20 10:53:42,382][INFO][superset_tools_app] ResourceService initialized +[2026-02-20 10:53:42,425][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-20 10:53:42,425][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:53:42,426][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-20 10:53:42,556][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:53:42,556][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-20 10:53:42,557][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-20 10:53:42,557][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-20 10:54:44,288][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-20 10:54:44,288][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-20 10:54:44,936][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:54:44,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:44,936][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:44,936][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:44,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,942][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:44,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,943][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:44,943][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:44,944][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:44,944][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:45,153][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,153][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:45,154][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:45,154][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:45,154][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:54:45,155][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:54:45,156][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:45,156][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:45,426][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:45,426][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-20 10:54:45,427][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-20 10:54:45,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-20 10:54:45,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-20 10:54:45,427][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:45,427][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-20 10:54:45,427][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:54:45,428][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:45,428][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:45,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:45,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:45,435][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:45,436][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:45,436][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-20 10:54:45,436][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-20 10:54:45,437][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-20 10:54:45,437][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-20 10:54:45,449][INFO][superset_tools_app] TaskManager initialized +[2026-02-20 10:54:45,449][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-20 10:54:45,450][INFO][superset_tools_app] SchedulerService initialized +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:45,450][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:45,451][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-20 10:54:45,451][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-20 10:54:45,451][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-20 10:54:45,451][INFO][superset_tools_app] ResourceService initialized +[2026-02-20 10:54:45,485][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-20 10:54:45,485][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:45,485][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:45,618][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-20 10:54:45,619][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:45,619][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-20 10:54:45,619][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-20 10:54:45,620][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-20 10:54:53,036][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-20 10:54:53,036][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-20 10:54:53,036][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-20 10:54:53,037][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-20 10:54:53,037][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-20 10:54:53,037][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-20 10:54:53,037][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-20 10:54:53,665][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:54:53,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:53,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:53,665][DEBUG][superset_tools_app] [init_db][Entry] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Coherence:OK] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Action] [init_db][Exit] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:53,670][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,671][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,671][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:53,672][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:53,673][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,673][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:53,871][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:53,871][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-20 10:54:53,871][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:54:53,872][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-20 10:54:53,873][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:53,873][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:54,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:54,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:54,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:54,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:54,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:54,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-20 10:54:54,104][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-20 10:54:54,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with ../config.json +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Entry] Loading from ../config.json +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-20 10:54:54,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Coherence:OK] Configuration loaded +[2026-02-20 10:54:54,104][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:54,104][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:54,104][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-20 10:54:54,105][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-20 10:54:54,105][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-20 10:54:54,113][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-20 10:54:54,113][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-20 10:54:54,114][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-20 10:54:54,114][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-20 10:54:54,114][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-20 10:54:54,125][INFO][superset_tools_app] TaskManager initialized +[2026-02-20 10:54:54,125][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-20 10:54:54,126][INFO][superset_tools_app] SchedulerService initialized +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:54,126][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:54,126][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-20 10:54:54,127][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-20 10:54:54,127][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-20 10:54:54,127][INFO][superset_tools_app] ResourceService initialized +[2026-02-20 10:54:54,159][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-20 10:54:54,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-20 10:54:54,160][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-20 10:54:54,269][DEBUG][superset_tools_app] [startup_event][Entry] +[2026-02-20 10:54:54,269][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Coherence:OK] +[2026-02-20 10:54:54,269][DEBUG][superset_tools_app] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Action] [startup_event][Exit] +[2026-02-20 10:54:54,269][DEBUG][superset_tools_app] [SchedulerService.start][Entry] +[2026-02-20 10:54:54,270][INFO][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] Scheduler started. +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.load_schedules][Entry] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [get_config][Entry] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.add_backup_job][Entry] env_id=ss1, cron=2 22 * * * +[2026-02-20 10:54:54,270][INFO][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] Scheduled backup job added for environment ss1: 2 22 * * * +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Coherence:OK] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Action] [SchedulerService.add_backup_job][Exit] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Coherence:OK] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Action] [SchedulerService.load_schedules][Exit] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Coherence:OK] +[2026-02-20 10:54:54,270][DEBUG][superset_tools_app] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Action] [SchedulerService.start][Exit] +[2026-02-20 11:51:31,538][DEBUG][superset_tools_app] [shutdown_event][Entry] +[2026-02-20 11:51:31,538][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Coherence:OK] +[2026-02-20 11:51:31,538][DEBUG][superset_tools_app] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Action] [shutdown_event][Exit] +[2026-02-20 11:51:31,538][DEBUG][superset_tools_app] [SchedulerService.stop][Entry] +[2026-02-20 11:51:31,539][INFO][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] Scheduler stopped. +[2026-02-20 11:51:31,539][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Coherence:OK] +[2026-02-20 11:51:31,539][DEBUG][superset_tools_app] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Action] [SchedulerService.stop][Exit] +[2026-02-23 10:41:18,006][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,007][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,008][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,009][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,009][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,011][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,011][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,011][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,012][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,012][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 10:41:18,013][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,013][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,013][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,015][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,015][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,472][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,472][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 10:41:18,476][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 10:41:18,477][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 10:41:18,477][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 10:41:18,478][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,478][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 10:41:18,993][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:18,994][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:18,994][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 10:41:18,997][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 10:41:18,997][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 10:41:18,997][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 10:41:18,999][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 10:41:18,999][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 10:41:18,999][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 10:41:19,000][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 10:41:19,000][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 10:41:19,000][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 10:41:19,000][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 10:41:19,001][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 10:41:19,002][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 10:41:19,002][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 10:41:19,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 10:41:19,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 10:41:19,020][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 10:41:19,020][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 10:41:19,021][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 10:41:19,021][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 10:41:19,021][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 10:41:19,032][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 10:41:19,033][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 10:41:19,033][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 10:41:19,034][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 10:41:19,034][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 10:41:19,034][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 10:41:19,034][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 10:41:19,034][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 10:41:19,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 10:41:19,035][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 10:41:19,035][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 10:41:19,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 10:41:19,035][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 10:41:19,035][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 10:41:19,094][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 10:41:19,094][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 10:41:19,094][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 10:41:19,316][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 10:41:19,318][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 10:41:19,319][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 10:41:19,319][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 10:41:19,319][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 10:41:19,324][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 10:41:19,325][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 10:41:19,325][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 10:41:19,326][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 10:41:19,326][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 10:41:19,330][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 10:41:19,331][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 10:41:19,331][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:Failed] 400: {'message': "Invalid values for 'task_types'", 'field': 'task_types', 'invalid_values': ['bad_type'], 'allowed_values': ['llm_verification', 'backup', 'migration', 'documentation', 'unknown']} +[2026-02-23 10:41:19,331][INFO][superset_tools_app] Response status: 400 for /api/reports +[2026-02-23 10:41:19,335][INFO][superset_tools_app] Incoming request: GET /api/reports/detail-1 +[2026-02-23 10:41:19,337][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=detail-1 +[2026-02-23 10:41:19,337][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:OK] +[2026-02-23 10:41:19,337][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Exit] +[2026-02-23 10:41:19,337][INFO][superset_tools_app] Response status: 200 for /api/reports/detail-1 +[2026-02-23 10:41:19,341][INFO][superset_tools_app] Incoming request: GET /api/reports/unknown-id +[2026-02-23 10:41:19,342][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=unknown-id +[2026-02-23 10:41:19,343][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:Failed] 404: {'message': 'Report not found', 'code': 'REPORT_NOT_FOUND'} +[2026-02-23 10:41:19,343][INFO][superset_tools_app] Response status: 404 for /api/reports/unknown-id +[2026-02-23 10:41:19,346][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 10:41:19,348][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 10:41:19,348][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 10:41:19,348][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 10:41:19,348][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 10:41:19,352][INFO][superset_tools_app] Incoming request: GET /api/reports/r-3 +[2026-02-23 10:41:19,355][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=r-3 +[2026-02-23 10:41:19,355][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:OK] +[2026-02-23 10:41:19,355][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Exit] +[2026-02-23 10:41:19,355][INFO][superset_tools_app] Response status: 200 for /api/reports/r-3 +[2026-02-23 11:40:11,694][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,695][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,695][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,696][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:11,697][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,697][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:11,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:11,940][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 11:40:11,940][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 11:40:11,941][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:11,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 11:40:12,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:12,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 11:40:12,103][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 11:40:12,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 11:40:12,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 11:40:12,105][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 11:40:12,105][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 11:40:12,105][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 11:40:12,106][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 11:40:12,106][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 11:40:12,106][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 11:40:12,107][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 11:40:12,107][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 11:40:12,107][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 11:40:12,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 11:40:12,107][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:12,116][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 11:40:12,117][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 11:40:12,117][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 11:40:12,117][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 11:40:12,118][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 11:40:12,118][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 11:40:12,126][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 11:40:12,126][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 11:40:12,127][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 11:40:12,127][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 11:40:12,127][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 11:40:12,127][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 11:40:12,127][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 11:40:12,127][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 11:40:12,128][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 11:40:12,128][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 11:40:12,128][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 11:40:12,128][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 11:40:12,157][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 11:40:12,157][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 11:40:12,157][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 11:40:12,270][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 11:40:12,272][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 11:40:12,272][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 11:40:12,272][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 11:40:12,272][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 11:40:12,274][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 11:40:12,275][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 11:40:12,275][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 11:40:12,275][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 11:40:12,276][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 11:40:12,278][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 11:40:12,279][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 11:40:12,279][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 11:40:12,279][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 11:40:12,279][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 11:40:12,281][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 11:40:12,281][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 11:40:12,282][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:Failed] 400: {'message': "Invalid values for 'task_types'", 'field': 'task_types', 'invalid_values': ['bad_type'], 'allowed_values': ['llm_verification', 'backup', 'migration', 'documentation', 'unknown']} +[2026-02-23 11:40:12,282][INFO][superset_tools_app] Response status: 400 for /api/reports +[2026-02-23 11:40:12,283][INFO][superset_tools_app] Incoming request: GET /api/reports/detail-1 +[2026-02-23 11:40:12,284][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=detail-1 +[2026-02-23 11:40:12,285][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:OK] +[2026-02-23 11:40:12,285][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Exit] +[2026-02-23 11:40:12,285][INFO][superset_tools_app] Response status: 200 for /api/reports/detail-1 +[2026-02-23 11:40:12,286][INFO][superset_tools_app] Incoming request: GET /api/reports/unknown-id +[2026-02-23 11:40:12,288][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=unknown-id +[2026-02-23 11:40:12,288][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:Failed] 404: {'message': 'Report not found', 'code': 'REPORT_NOT_FOUND'} +[2026-02-23 11:40:12,288][INFO][superset_tools_app] Response status: 404 for /api/reports/unknown-id +[2026-02-23 11:40:12,289][INFO][superset_tools_app] Incoming request: GET /api/reports +[2026-02-23 11:40:12,290][DEBUG][superset_tools_app] [list_reports][Entry] +[2026-02-23 11:40:12,290][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Coherence:OK] +[2026-02-23 11:40:12,290][DEBUG][superset_tools_app] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Action] [list_reports][Exit] +[2026-02-23 11:40:12,290][INFO][superset_tools_app] Response status: 200 for /api/reports +[2026-02-23 11:40:12,291][INFO][superset_tools_app] Incoming request: GET /api/reports/r-3 +[2026-02-23 11:40:12,293][DEBUG][superset_tools_app] [get_report_detail][Entry] report_id=r-3 +[2026-02-23 11:40:12,293][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Coherence:OK] +[2026-02-23 11:40:12,293][DEBUG][superset_tools_app] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Action] [get_report_detail][Exit] +[2026-02-23 11:40:12,293][INFO][superset_tools_app] Response status: 200 for /api/reports/r-3 +[2026-02-23 16:24:18,146][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:24:18,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:18,146][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:18,146][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:18,147][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,148][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:18,148][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,149][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,149][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,150][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,150][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,349][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,350][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 16:24:18,350][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:24:18,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,352][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,587][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,588][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 16:24:18,588][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:18,588][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:18,589][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 16:24:18,589][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 16:24:18,589][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 16:24:18,589][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 16:24:18,589][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 16:24:18,589][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 16:24:18,590][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:18,590][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:24:18,590][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:24:18,591][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 16:24:18,591][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:18,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:18,591][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:18,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:18,602][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:18,602][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 16:24:18,602][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 16:24:18,602][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 16:24:18,604][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 16:24:18,605][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 16:24:18,605][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 16:24:18,605][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 16:24:18,605][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 16:24:18,606][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:18,606][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 16:24:18,606][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 16:24:18,606][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 16:24:18,634][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:24:18,634][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:18,634][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:18,688][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:24:18,688][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:18,688][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:28,469][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 16:24:28,469][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,470][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,471][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:28,471][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:28,472][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:28,737][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:28,738][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 16:24:28,738][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:24:28,739][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:28,739][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:29,015][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:29,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:29,016][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 16:24:29,017][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 16:24:29,017][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 16:24:29,017][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 16:24:29,018][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 16:24:29,018][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 16:24:29,018][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 16:24:29,019][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:29,019][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:24:29,019][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:24:29,020][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:24:29,020][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:24:29,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:24:29,027][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:24:29,027][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:24:29,028][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:24:29,029][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:24:29,029][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 16:24:29,029][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 16:24:29,029][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 16:24:29,030][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 16:24:29,030][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 16:24:29,031][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 16:24:29,032][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 16:24:29,032][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 16:24:29,033][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:29,033][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 16:24:29,033][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 16:24:29,033][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 16:24:29,066][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:24:29,067][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:29,067][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:24:29,120][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:24:29,121][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:24:29,121][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:25:46,775][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:25:46,776][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,777][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:25:46,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,778][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:46,778][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:46,779][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:46,779][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:46,779][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 16:25:46,779][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,779][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,779][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:46,988][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:46,988][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:46,989][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 16:25:46,989][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:25:46,990][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:46,990][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:47,222][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:47,223][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 16:25:47,223][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:25:47,223][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:25:47,224][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 16:25:47,224][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 16:25:47,224][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 16:25:47,224][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 16:25:47,224][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 16:25:47,224][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 16:25:47,225][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:25:47,225][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 16:25:47,225][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:25:47,226][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:25:47,226][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:25:47,233][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:25:47,234][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:25:47,234][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 16:25:47,234][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 16:25:47,234][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 16:25:47,236][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 16:25:47,236][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 16:25:47,237][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:25:47,237][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:25:47,237][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 16:25:47,238][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 16:25:47,238][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 16:25:47,238][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 16:25:47,269][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:25:47,270][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:25:47,270][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:25:47,330][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:25:47,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:25:47,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:27:52,972][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:52,972][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:27:52,973][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,974][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:52,974][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,975][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:52,975][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:52,976][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 16:27:52,976][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:52,976][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:52,976][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:53,211][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,211][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:53,212][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 16:27:53,212][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:27:53,213][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:27:53,214][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:53,214][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:53,468][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:53,469][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:53,469][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 16:27:53,470][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 16:27:53,470][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:27:53,470][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:27:53,470][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:27:53,470][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 16:27:53,470][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 16:27:53,470][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 16:27:53,471][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 16:27:53,471][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:27:53,471][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 16:27:53,471][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:27:53,472][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:27:53,472][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:27:53,480][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:27:53,481][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:27:53,481][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 16:27:53,481][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 16:27:53,481][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 16:27:53,483][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 16:27:53,483][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 16:27:53,483][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 16:27:53,483][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 16:27:53,484][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 16:27:53,484][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 16:27:53,484][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 16:27:53,484][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 16:27:53,484][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 16:27:53,485][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:27:53,485][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 16:27:53,485][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 16:27:53,485][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 16:27:53,513][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:27:53,513][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:27:53,513][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:27:53,568][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:27:53,568][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:27:53,568][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:41:06,559][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,559][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:41:06,560][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,561][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:06,561][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,562][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,562][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:06,563][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,563][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:06,775][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:06,775][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,775][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 16:41:06,776][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 16:41:06,777][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:06,777][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:41:07,015][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:07,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 16:41:07,016][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 16:41:07,016][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 16:41:07,016][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 16:41:07,017][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 16:41:07,017][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 16:41:07,017][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 16:41:07,017][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:41:07,018][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 16:41:07,018][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 16:41:07,018][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 16:41:07,019][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:07,026][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 16:41:07,027][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 16:41:07,027][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 16:41:07,027][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 16:41:07,027][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 16:41:07,028][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 16:41:07,028][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 16:41:07,030][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 16:41:07,030][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 16:41:07,031][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:41:07,031][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 16:41:07,031][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 16:41:07,031][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 16:41:07,062][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:41:07,062][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:41:07,062][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 16:41:07,115][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 16:41:07,115][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 16:41:07,115][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:34:25,349][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 18:34:25,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:34:25,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:34:25,349][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 18:34:25,349][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 18:34:25,349][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:34:25,350][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,351][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:34:25,351][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,352][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,352][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,353][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,353][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 18:34:25,611][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 18:34:25,612][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,612][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,784][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,784][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,785][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,785][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 18:34:25,786][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 18:34:25,786][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 18:34:25,786][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 18:34:25,786][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 18:34:25,787][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:34:25,787][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 18:34:25,787][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 18:34:25,788][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:34:25,788][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,795][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:34:25,796][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:34:25,796][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 18:34:25,796][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 18:34:25,796][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 18:34:25,797][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 18:34:25,797][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 18:34:25,797][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 18:34:25,797][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 18:34:25,797][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 18:34:25,799][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 18:34:25,799][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 18:34:25,800][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 18:34:25,800][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 18:34:25,801][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:34:25,801][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 18:34:25,801][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 18:34:25,801][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 18:34:25,833][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 18:34:25,833][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:34:25,833][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:34:25,882][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 18:34:25,882][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:34:25,882][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:35:38,599][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 18:35:38,600][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,601][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,601][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,602][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,602][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:38,603][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,603][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:38,802][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:38,802][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:38,803][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 18:35:38,803][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 18:35:38,804][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 18:35:38,804][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 18:35:38,805][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:38,805][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:38,805][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:39,032][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:39,032][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:39,033][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:39,033][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 18:35:39,034][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 18:35:39,034][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 18:35:39,034][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 18:35:39,035][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 18:35:39,035][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 18:35:39,035][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 18:35:39,035][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 18:35:39,035][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:35:39,036][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 18:35:39,036][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 18:35:39,036][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 18:35:39,037][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 18:35:39,037][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 18:35:39,037][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 18:35:39,045][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 18:35:39,046][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 18:35:39,046][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 18:35:39,046][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 18:35:39,046][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 18:35:39,047][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 18:35:39,047][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 18:35:39,049][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 18:35:39,049][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 18:35:39,050][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:35:39,050][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 18:35:39,050][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 18:35:39,050][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 18:35:39,078][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 18:35:39,078][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:35:39,079][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 18:35:39,127][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 18:35:39,127][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 18:35:39,127][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:10:51,878][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:51,878][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,879][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:51,879][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,880][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:51,880][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:51,881][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:51,881][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:52,061][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:52,061][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:52,061][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:10:52,062][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:10:52,063][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:52,063][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:52,277][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:52,278][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:10:52,278][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:10:52,278][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:10:52,278][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:10:52,279][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:10:52,279][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:10:52,279][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:10:52,279][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:10:52,279][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:10:52,279][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:10:52,279][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:10:52,280][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:10:52,280][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:10:52,287][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:10:52,288][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:10:52,288][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:10:52,288][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:10:52,288][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:10:52,289][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:10:52,289][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:10:52,292][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:10:52,292][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:10:52,293][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:10:52,293][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:10:52,293][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:10:52,293][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:10:52,320][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:10:52,321][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:10:52,321][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:10:52,370][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:10:52,370][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:10:52,370][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:23:18,501][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:23:18,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:23:18,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:23:18,502][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,503][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:23:18,503][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,504][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,504][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,505][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,505][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,678][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,678][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,678][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:23:18,679][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:23:18,680][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,680][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,891][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,891][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,892][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,892][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:23:18,893][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:23:18,893][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:23:18,893][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:23:18,894][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:23:18,894][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:23:18,894][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:23:18,894][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:23:18,895][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:23:18,895][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:23:18,902][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:23:18,902][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:23:18,903][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:23:18,903][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:23:18,903][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:23:18,905][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:23:18,905][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:23:18,906][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:23:18,906][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:23:18,906][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:23:18,906][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:23:18,912][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:23:18,912][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:23:18,912][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:24:30,496][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:24:30,497][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,498][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,499][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,499][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,500][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,500][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,501][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,501][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,681][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,681][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,681][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,682][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,682][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:24:30,682][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:24:30,683][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:24:30,684][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:24:30,684][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,684][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,684][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:24:30,922][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,923][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:24:30,923][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:24:30,923][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:24:30,923][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:24:30,924][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:24:30,924][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:24:30,924][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:24:30,924][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:24:30,925][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:24:30,925][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:24:30,926][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:24:30,926][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:24:30,938][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:24:30,939][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:24:30,939][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:24:30,939][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:24:30,939][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:24:30,940][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:24:30,940][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:24:30,940][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:24:30,942][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:24:30,942][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:24:30,943][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:24:30,943][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:24:30,943][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:24:30,943][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:24:30,943][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:24:30,944][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:24:30,944][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:24:30,944][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:24:30,944][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:24:30,944][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:24:30,944][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:24:30,949][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:24:30,949][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:24:30,949][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:25:23,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,493][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,494][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:25:23,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,495][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,495][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,496][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,496][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,671][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,671][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,672][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:25:23,672][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:25:23,673][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,673][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:25:23,952][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,953][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,953][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:25:23,954][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:25:23,954][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:25:23,954][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:25:23,954][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:25:23,954][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:25:23,954][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:25:23,954][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:25:23,955][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:25:23,955][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:25:23,955][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:25:23,955][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:25:23,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:25:23,955][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:25:23,955][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:25:23,956][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:25:23,957][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:25:23,957][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:25:23,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:25:23,965][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:25:23,965][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:25:23,965][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:25:23,966][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:25:23,966][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:25:23,967][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:25:23,967][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:25:23,967][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:25:23,968][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:25:23,968][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:25:23,971][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:25:23,971][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:25:23,973][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:25:23,973][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:25:23,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:25:23,973][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:25:23,980][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:25:23,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:25:23,981][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:26:16,884][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:16,884][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,885][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:16,885][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,886][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:16,886][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:16,887][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:16,887][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:17,071][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:17,071][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:17,071][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:26:17,072][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:26:17,073][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:17,073][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:26:17,314][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:17,315][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:26:17,315][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:26:17,315][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:26:17,315][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:26:17,316][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:26:17,316][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:26:17,316][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:26:17,316][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:26:17,317][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:26:17,317][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:26:17,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:26:17,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:26:17,324][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:26:17,324][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:17,324][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:26:17,325][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:26:17,325][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:26:17,325][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:26:17,325][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:26:17,326][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:26:17,326][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:26:17,326][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:26:17,326][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:26:17,328][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:26:17,328][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:26:17,328][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:26:17,328][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:26:17,328][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:26:17,329][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:26:17,329][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:26:17,329][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:26:17,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:26:17,330][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:26:17,330][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:26:17,330][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:26:17,330][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:26:17,330][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:26:17,335][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:26:17,335][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:26:17,335][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:28:43,489][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,490][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,491][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,491][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,492][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,492][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,493][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,493][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:28:43,494][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,494][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,494][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,699][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,699][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,700][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:28:43,700][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:28:43,701][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,701][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,958][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,958][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:28:43,959][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:28:43,959][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:28:43,959][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:28:43,960][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:28:43,960][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:28:43,960][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:28:43,960][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:28:43,961][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:28:43,961][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,968][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:28:43,969][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:28:43,969][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:28:43,969][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:28:43,969][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:28:43,970][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:28:43,970][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:28:43,970][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:28:43,972][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:28:43,972][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:28:43,973][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:28:43,973][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:28:43,973][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:28:43,974][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:28:43,974][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:28:43,974][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:28:43,979][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:28:43,979][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:28:43,979][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:28:43,992][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:43,993][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 19:28:43,993][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:43,993][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:43,994][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:43,995][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:28:43,995][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:28:43.995228][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:28:43,995][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:28:43,995][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:28:43,995][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': None, 'branch_name': 'feature/test'}, 'confidence': 0.7, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:28:43,995][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:43,995][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:43,996][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:43,996][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': None, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.72, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '643c6edb-515b-4cb9-ba5e-1f074575cfc5'} +[2026-02-23 19:28:43,996][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:43,996][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:43,996][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:28:43,996][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Missing dashboard_id/source_env/target_env +[2026-02-23 19:28:44,084][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:44,084][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': None, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.72, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'd4ae1222-5527-4430-ac05-5976ff7227aa'} +[2026-02-23 19:28:44,084][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:44,084][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:44,084][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:28:44,085][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Missing dashboard_id/source_env/target_env +[2026-02-23 19:28:44,111][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:44,112][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': None, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.72, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'cf42e841-317b-4fef-b048-f9bd3c6b9e4a'} +[2026-02-23 19:28:44,112][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:44,112][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:44,113][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:28:44,113][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Missing dashboard_id/source_env/target_env +[2026-02-23 19:28:44,137][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:44,138][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': None, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.72, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '8a805304-7828-4f7c-87fa-a88df00f62a0'} +[2026-02-23 19:28:44,138][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:44,138][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:44,138][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:28:44,138][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 19:28:44,139][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:44,139][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': None, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.72, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '7ef97add-a0e0-45ae-a379-1793e5ebd36a'} +[2026-02-23 19:28:44,139][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:44,139][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:28:44,140][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:28:44,140][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 19:28:44,140][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:28:44,141][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'a54ac474-e2d6-4a54-9849-8919488b32e8'} +[2026-02-23 19:28:44,141][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:28:44,141][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,240][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,240][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,241][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,241][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,242][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,242][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,243][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,243][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,442][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,442][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,443][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:29:23,443][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:29:23,444][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,444][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,690][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,690][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,691][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,691][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:29:23,692][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:29:23,692][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:29:23,692][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:29:23,693][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:29:23,693][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:29:23,693][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,693][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:29:23,694][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:29:23,694][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:29:23,702][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:29:23,702][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:29:23,703][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:29:23,703][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:29:23,703][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:29:23,705][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:29:23,705][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:29:23,706][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:29:23,706][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:29:23,706][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:29:23,707][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:29:23,707][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:29:23,711][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:29:23,711][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:29:23,711][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:29:23,722][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,723][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 19:29:23,723][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,723][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,724][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,725][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:29:23,725][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:29:23.725126][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:29:23,725][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:29:23,725][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:29:23,725][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:29:23,725][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,725][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,726][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,726][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'cafd2db4-5d52-46d3-b2a5-68b6985110c5'} +[2026-02-23 19:29:23,726][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,726][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,726][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:29:23,727][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'cafd2db4-5d52-46d3-b2a5-68b6985110c5', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:29:23,727][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:29:23,727][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:29:23,727][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,727][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '75e74d56-73ca-4039-87f9-0dc1f45131bb'} +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:29:23,728][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '75e74d56-73ca-4039-87f9-0dc1f45131bb', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,728][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,729][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,729][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '00bda7cc-d777-403f-927d-84252117906a'} +[2026-02-23 19:29:23,729][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,729][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,729][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:29:23,730][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '00bda7cc-d777-403f-927d-84252117906a', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:29:23,730][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:29:23,730][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:29:23,730][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,730][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:29:23,730][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,730][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,731][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,731][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'ad9e979a-8ca0-487d-923b-cf41267a72e1'} +[2026-02-23 19:29:23,731][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,731][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,731][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:29:23,731][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 19:29:23,732][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,732][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'bffd068f-6609-471f-97f6-160da80f5840'} +[2026-02-23 19:29:23,732][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,732][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:29:23,732][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:29:23,732][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:29:23,733][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:29:23.733655][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:29:23,733][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:29:23,733][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:11,895][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:11,895][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:11,896][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,897][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:11,897][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,898][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:11,898][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:11,899][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:11,900][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:11,900][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:33:11,901][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:11,901][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:11,901][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:12,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:12,199][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:12,199][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:33:12,200][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:33:12,201][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:33:12,202][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:12,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:12,668][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:12,669][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:12,669][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:12,670][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:33:12,670][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:33:12,670][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:33:12,670][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:12,671][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:12,671][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:33:12,671][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:33:12,671][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:33:12,673][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:33:12,673][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:33:12,673][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:33:12,674][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:12,674][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:33:12,674][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:33:12,675][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:33:12,676][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:33:12,676][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:33:12,676][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:12,676][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:12,676][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:12,693][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:12,694][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:12,695][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:12,695][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:12,696][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:33:12,696][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:33:12,696][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:33:12,697][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:33:12,697][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:33:12,701][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:33:12,701][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:33:12,703][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:33:12,704][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:12,704][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:33:12,704][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:33:12,704][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:33:12,714][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:33:12,714][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:12,715][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:12,735][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,735][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 19:33:12,736][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,736][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,737][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,737][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:33:12,737][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:33:12.737826][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:33:12,737][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:33:12,737][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:33:12,738][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:33:12,738][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,738][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,739][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,740][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '42b290e2-68a4-4530-9aba-d026c373649b'} +[2026-02-23 19:33:12,740][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,740][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,741][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:12,741][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '42b290e2-68a4-4530-9aba-d026c373649b', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:12,741][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:12,741][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:12,742][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,743][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'd55873f4-776d-42e9-b3fa-d0987f8d9011'} +[2026-02-23 19:33:12,743][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,743][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,743][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:12,744][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'd55873f4-776d-42e9-b3fa-d0987f8d9011', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:12,744][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:12,744][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:12,744][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,744][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:33:12,745][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,745][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,745][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,746][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '56ef5d25-bb46-4f86-b2d2-35a2b3c69c42'} +[2026-02-23 19:33:12,746][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,746][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,746][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:12,746][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '56ef5d25-bb46-4f86-b2d2-35a2b3c69c42', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:12,746][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:12,746][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:12,747][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,747][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:33:12,747][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,747][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,748][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,748][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '70dec0ec-3e33-4a6a-b05e-8a7ad7a873fe'} +[2026-02-23 19:33:12,748][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,748][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,748][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:12,748][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 19:33:12,749][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,749][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '4ab49e5f-7f5f-4ca4-aaa5-e89ab089d81e'} +[2026-02-23 19:33:12,749][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,749][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:12,750][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:12,750][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 19:33:12,751][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:12,751][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:33:12,751][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:33:12.751815][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:33:12,751][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:33:12,751][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:33:12,752][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:33:12,752][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:12,752][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:45,592][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 19:33:45,593][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,594][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,594][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,595][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,595][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:45,596][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,596][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:45,813][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:45,814][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:45,814][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 19:33:45,814][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 19:33:45,815][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 19:33:45,816][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:45,816][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:46,154][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:46,155][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 19:33:46,155][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 19:33:46,155][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 19:33:46,155][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 19:33:46,156][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 19:33:46,156][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 19:33:46,157][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:46,157][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 19:33:46,157][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 19:33:46,158][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 19:33:46,158][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 19:33:46,166][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 19:33:46,167][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 19:33:46,167][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 19:33:46,168][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 19:33:46,168][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 19:33:46,168][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 19:33:46,172][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 19:33:46,172][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 19:33:46,173][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 19:33:46,173][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 19:33:46,173][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 19:33:46,173][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 19:33:46,173][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 19:33:46,174][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:46,174][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:46,174][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 19:33:46,174][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 19:33:46,174][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 19:33:46,174][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 19:33:46,179][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 19:33:46,179][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 19:33:46,179][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 19:33:46,191][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,192][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 19:33:46,192][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,192][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,194][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,195][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:33:46,195][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:33:46.195251][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:33:46,195][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:33:46,195][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:33:46,195][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:33:46,195][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,195][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,196][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,197][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '2802fc37-3970-4bb8-b35a-c3ebb9be8e41'} +[2026-02-23 19:33:46,197][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,197][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,197][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:46,197][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '2802fc37-3970-4bb8-b35a-c3ebb9be8e41', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:46,197][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:46,198][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:46,198][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,199][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'f93f7824-7b49-4476-9809-842a5554d117'} +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:46,199][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'f93f7824-7b49-4476-9809-842a5554d117', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:46,199][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,200][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:33:46,200][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,200][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,202][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,203][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '22813666-8e91-4c61-94c1-38c0610d1615'} +[2026-02-23 19:33:46,203][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,203][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,203][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:46,203][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '22813666-8e91-4c61-94c1-38c0610d1615', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 19:33:46,203][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 19:33:46,204][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 19:33:46,204][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,204][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 19:33:46,204][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,204][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,206][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,206][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'd90ee972-7ee2-4a70-8c52-b23f38092c28'} +[2026-02-23 19:33:46,206][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,206][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,207][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:46,207][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 19:33:46,207][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,208][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '08f1695c-4f25-4fc5-8dad-03c6a8fa8e27'} +[2026-02-23 19:33:46,208][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,208][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 19:33:46,208][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 19:33:46,208][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 19:33:46,209][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T16:33:46.209580][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 19:33:46,209][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 19:33:46,209][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,406][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,406][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,407][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,407][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,408][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,408][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,409][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,409][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,608][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,608][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,608][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:00:24,609][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:00:24,610][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,610][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,851][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,852][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:00:24,852][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:00:24,852][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:00:24,853][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:00:24,853][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:00:24,853][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:00:24,853][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:00:24,853][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:00:24,853][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:00:24,853][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:00:24,854][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:00:24,854][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:00:24,854][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:00:24,855][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:00:24,855][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:00:24,862][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:00:24,863][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:00:24,863][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:00:24,863][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:00:24,863][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:00:24,864][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:00:24,864][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:00:24,866][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:00:24,866][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:00:24,867][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:00:24,867][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:00:24,867][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:00:24,867][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:00:24,872][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:00:24,872][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:00:24,872][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:00:24,882][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,883][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:00:24,883][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,883][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,884][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,885][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:00:24,885][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:00:24.885348][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:00:24,885][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:00:24,885][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:00:24,885][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:00:24,885][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,885][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,886][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,886][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '85374656-a7af-4327-86d1-539c32c43060'} +[2026-02-23 20:00:24,886][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,887][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,887][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:00:24,887][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '85374656-a7af-4327-86d1-539c32c43060', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:00:24,887][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:00:24,887][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,888][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '7868a35e-be94-4bc7-8e7f-d650a81e650d'} +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:00:24,888][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '7868a35e-be94-4bc7-8e7f-d650a81e650d', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:00:24,888][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:00:24,889][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,889][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:00:24,889][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,889][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,889][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,890][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '436ac9a6-8e5e-4454-8a74-2c75138e9acc'} +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:00:24,890][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '436ac9a6-8e5e-4454-8a74-2c75138e9acc', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,890][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:00:24,890][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,891][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,891][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,892][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:Failed] '_FakeConfigManager' object has no attribute 'get_config' +[2026-02-23 20:00:24,980][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,981][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '6a2cc87d-3a6d-4f77-b884-7d53dfbccdba'} +[2026-02-23 20:00:24,981][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,981][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,982][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:00:24,982][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:00:24,983][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,983][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '09f18172-3900-476a-bbfe-80ac2d8526b5'} +[2026-02-23 20:00:24,983][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,983][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:00:24,983][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:00:24,984][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:00:24,984][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:00:24,985][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:00:24,985][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:00:24.985136][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:00:24,985][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:00:24,985][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:00:24,985][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:00:24,985][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:00:24,985][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:08,619][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:01:08,619][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,620][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:08,620][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,621][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,622][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,622][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:08,623][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,623][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:08,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:08,825][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:08,825][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:01:08,826][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:01:08,827][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:08,827][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:01:09,064][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:09,065][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:01:09,065][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:01:09,065][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:01:09,066][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:01:09,066][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:01:09,066][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:01:09,066][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:01:09,066][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:01:09,066][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:01:09,067][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:01:09,067][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:01:09,067][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:01:09,068][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:01:09,068][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:09,075][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:01:09,076][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:01:09,076][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:01:09,076][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:01:09,076][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:01:09,077][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:01:09,077][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:01:09,077][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:01:09,077][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:01:09,077][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:01:09,079][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:01:09,079][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:01:09,080][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:01:09,080][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:01:09,080][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:01:09,081][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:01:09,085][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:01:09,085][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:01:09,085][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:01:09,097][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,097][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:01:09,098][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,098][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:01:09,099][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:01:09.099662][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:01:09,099][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,099][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,100][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,101][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '91896a66-0a06-4ced-a0b3-6c5806a0da7b'} +[2026-02-23 20:01:09,101][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,101][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,101][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:01:09,101][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '91896a66-0a06-4ced-a0b3-6c5806a0da7b', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:01:09,101][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:01:09,101][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:01:09,102][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,102][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '1cb5ffa7-ba88-40f5-8f95-6b5b50a42fa0'} +[2026-02-23 20:01:09,102][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,102][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,102][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:01:09,102][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '1cb5ffa7-ba88-40f5-8f95-6b5b50a42fa0', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:01:09,102][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:01:09,103][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:01:09,103][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,103][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:01:09,103][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,103][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,103][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,104][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '6d5851a3-a10f-49d5-9a2c-86d6ebe3e001'} +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:01:09,104][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '6d5851a3-a10f-49d5-9a2c-86d6ebe3e001', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:01:09,104][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,105][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:01:09,105][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,105][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,105][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:01:09,106][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:01:09,106][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:01:09,106][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Missing dashboard_id/environment/provider. Укажите ID/slug дашборда или окружение.'} +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,106][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,107][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,107][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '796b8204-33e6-4f2a-aeab-4d064176eb85'} +[2026-02-23 20:01:09,107][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,107][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,107][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:01:09,107][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:01:09,108][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,108][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '27fc5678-ce9b-4185-b4f6-8a164270ce74'} +[2026-02-23 20:01:09,108][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,108][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:01:09,108][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:01:09,108][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:01:09,109][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:01:09,109][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:01:09,109][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:01:09.109766][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:01:09,109][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:01:09,109][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:01:09,109][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:01:09,110][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:01:09,110][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,217][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:03:57,217][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:03:57,218][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,219][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,219][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,220][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,220][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,221][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,221][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,446][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,447][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,447][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,447][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:03:57,448][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:03:57,449][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,449][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:03:57,725][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,726][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:03:57,726][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:03:57,726][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:03:57,726][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:03:57,727][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:03:57,727][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:03:57,727][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:03:57,727][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:03:57,728][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:03:57,728][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:03:57,728][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:03:57,729][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:03:57,736][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:03:57,737][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:03:57,737][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:03:57,737][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:03:57,737][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:03:57,738][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:03:57,738][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:03:57,740][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:03:57,740][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:03:57,741][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:03:57,742][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:03:57,742][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:03:57,742][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:03:57,742][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:03:57,747][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:03:57,747][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:03:57,748][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:03:57,758][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,759][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,760][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:03:57,760][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,760][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,761][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,761][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,761][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,761][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,761][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762013][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762179][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762336][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762471][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762607][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762744][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,762][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.762877][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,762][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,763][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.763003][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,763][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.763138][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,763][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.763265][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,763][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.763584][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,763][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,763][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,764][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,764][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,764][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,764][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,764][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,765][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '8a57a333-cdfb-40bb-be6e-c15e30512bfc'} +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:03:57,765][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '8a57a333-cdfb-40bb-be6e-c15e30512bfc', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:03:57,765][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,766][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,767][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'bf3fed19-097e-4923-b2fe-5ddb57516afd'} +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:03:57,767][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'bf3fed19-097e-4923-b2fe-5ddb57516afd', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,767][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,768][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:03:57,768][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,768][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,768][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,768][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,769][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'e66d9132-8166-4f22-bf9d-e057209b8cee'} +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:03:57,769][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'e66d9132-8166-4f22-bf9d-e057209b8cee', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,769][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,770][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,770][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,771][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:03:57,772][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:03:57,772][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,772][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Missing dashboard_id/environment/provider. Укажите ID/slug дашборда или окружение.'} +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,772][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,773][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,774][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '6358a798-92d7-41cd-9054-f17f3755aa1c'} +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:03:57,774][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,775][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,776][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '6b002ba0-08a0-47e6-8a3c-c77ca0f5710d'} +[2026-02-23 20:03:57,776][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,776][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:03:57,776][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:03:57,776][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,777][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.777563][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,777][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.777738][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,777][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.777892][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,777][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778034][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778168][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778314][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778442][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778570][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778700][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,778][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.778824][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,778][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,779][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:03:57,779][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:03:57.779149][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:03:57,779][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:03:57,779][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:03:57,779][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:03:57,779][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:03:57,779][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:34,938][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:06:34,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:06:34,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:06:34,938][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:06:34,938][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:06:34,938][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:06:34,939][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,940][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:06:34,940][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,941][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:06:34,941][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:34,942][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:34,942][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:35,142][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,142][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,142][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:35,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:35,143][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:06:35,143][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:06:35,144][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:06:35,145][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:06:35,145][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:06:35,145][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:35,145][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:35,145][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:35,390][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:35,391][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:06:35,391][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:06:35,391][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:06:35,392][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:06:35,392][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:06:35,392][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:06:35,392][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:06:35,392][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:06:35,393][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:06:35,393][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:06:35,393][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:06:35,393][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:06:35,394][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:06:35,394][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:06:35,394][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:06:35,401][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:06:35,401][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:06:35,401][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:06:35,402][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:06:35,402][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:06:35,402][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:06:35,403][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:06:35,403][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:06:35,405][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:06:35,405][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:06:35,405][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:06:35,405][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:06:35,405][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:06:35,406][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:06:35,406][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:06:35,406][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:06:35,407][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:06:35,407][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:06:35,407][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:06:35,407][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:06:35,412][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:06:35,412][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:06:35,412][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:06:35,422][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,423][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,423][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:06:35,424][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,424][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,425][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.425790][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,425][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,425][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.425963][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426115][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426256][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426394][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426528][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426659][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426792][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,426][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.426927][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,426][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,427][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.427049][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,427][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.427385][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,427][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,427][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,428][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,429][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '010460ad-bad7-4405-81cc-2bb4530091b4'} +[2026-02-23 20:06:35,429][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,429][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,429][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:06:35,429][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '010460ad-bad7-4405-81cc-2bb4530091b4', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:06:35,429][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:06:35,429][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,430][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,431][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '374fecef-57d3-4452-a3db-cb685a1d5c1b'} +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:06:35,431][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '374fecef-57d3-4452-a3db-cb685a1d5c1b', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,431][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,432][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,432][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,433][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '0121c082-0aa0-467a-ba24-50188aecdca9'} +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:06:35,433][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '0121c082-0aa0-467a-ba24-50188aecdca9', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:06:35,433][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,434][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,434][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:06:35,435][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:06:35,435][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:06:35,436][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,436][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Missing dashboard_id/environment/provider. Укажите ID/slug дашборда или окружение.'} +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,436][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,437][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'f0edc9c7-59cd-49a5-80be-4d68be47c7d7'} +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:06:35,437][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,438][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'f9576931-b3b0-4acf-adaa-463caf158343'} +[2026-02-23 20:06:35,438][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,439][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:06:35,439][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:06:35,439][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:06:35,439][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440287][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440431][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440581][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440708][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440836][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,440][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.440967][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,440][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.441093][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.441228][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.441363][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.441484][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:06:35.441793][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:06:35,441][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:06:35,441][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:06:35,442][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:06:35,442][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,098][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,099][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,100][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,101][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:12:59,101][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,102][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:12:59,102][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,103][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,103][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,342][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,342][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,343][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:12:59,343][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:12:59,344][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:12:59,345][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:12:59,345][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,345][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,649][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:12:59,650][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,651][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,651][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:12:59,651][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:12:59,652][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:12:59,652][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:12:59,652][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:12:59,652][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:12:59,652][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:12:59,652][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:12:59,653][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:12:59,653][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:12:59,653][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,653][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:12:59,654][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:12:59,654][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:12:59,664][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:12:59,665][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:12:59,666][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:12:59,666][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:12:59,666][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:12:59,666][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:12:59,667][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:12:59,667][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:12:59,669][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:12:59,670][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:12:59,670][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:12:59,671][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:12:59,671][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:12:59,671][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:12:59,672][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:12:59,672][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:12:59,682][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:12:59,682][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:12:59,682][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:12:59,703][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,704][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,704][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,704][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,705][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,705][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,705][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,706][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:12:59,707][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,707][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,709][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,709][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,709][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,710][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,710][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,710][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.710965][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,711][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.711341][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,711][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.711640][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,711][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.711839][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,711][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,711][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.711989][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,712][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.712129][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,712][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.712291][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,712][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.712450][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,712][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.712600][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,712][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.712742][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,712][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,713][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,713][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.713150][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,713][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,713][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,713][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:12:59,713][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,713][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,714][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,715][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,715][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'f61c2fbc-339f-438d-9628-0b8774454969'} +[2026-02-23 20:12:59,716][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,716][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,716][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:12:59,717][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'f61c2fbc-339f-438d-9628-0b8774454969', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:12:59,717][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:12:59,717][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,718][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,719][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'ab713d20-7d09-45ce-a54f-ffd56b1eba7d'} +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:12:59,719][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'ab713d20-7d09-45ce-a54f-ffd56b1eba7d', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:12:59,719][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,720][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,720][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,721][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,722][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,722][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'fd549389-0e86-4047-b6d8-965145195e10'} +[2026-02-23 20:12:59,723][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,723][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,723][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:12:59,723][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'fd549389-0e86-4047-b6d8-965145195e10', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,724][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,724][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:12:59,725][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,725][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,726][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,727][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:12:59,728][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:12:59,728][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,728][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,729][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Нужно уточнение для запуска LLM-валидации: укажите дашборд (id или slug), окружение и провайдер LLM.'} +[2026-02-23 20:12:59,729][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,729][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,802][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,803][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'c215d8b4-fcb0-4959-87de-e5031176e15e'} +[2026-02-23 20:12:59,803][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,803][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,803][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:12:59,803][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:12:59,804][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,805][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '19588f45-d4bb-4795-9292-ca5239acc0b6'} +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,805][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:12:59,806][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:12:59,806][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:12:59,807][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:12:59,808][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:12:59,809][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:12:59,809][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:12:59,809][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,809][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.809747][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:12:59,809][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,809][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,810][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.810089][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,810][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.810408][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,810][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.810660][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,810][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.810905][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,810][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,811][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.811124][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,811][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.811411][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,811][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.811665][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,811][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,812][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.811998][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,812][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.812273][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,812][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:12:59,812][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:12:59.812966][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:12:59,813][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:12:59,813][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:12:59,813][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:12:59,813][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:12:59,813][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,127][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,127][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:13:10,128][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,129][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,129][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,130][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,130][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,131][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,131][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,329][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,330][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,330][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:13:10,330][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:13:10,331][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:13:10,331][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:13:10,332][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,332][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,332][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:13:10,573][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,574][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:13:10,574][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:13:10,574][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:13:10,575][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:13:10,575][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:13:10,575][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:13:10,575][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:13:10,575][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:13:10,575][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:13:10,576][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:13:10,576][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:13:10,576][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:13:10,577][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:13:10,577][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,584][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:13:10,585][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:13:10,585][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:13:10,585][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:13:10,585][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:13:10,586][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:13:10,589][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:13:10,589][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:13:10,590][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:13:10,590][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:13:10,590][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:13:10,591][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:13:10,591][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:13:10,591][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:13:10,595][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:13:10,596][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:13:10,596][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:13:10,606][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,606][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,606][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,606][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,606][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,607][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,607][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,607][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:13:10,607][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,607][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,608][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,608][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,609][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.609407][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,609][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.609570][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,609][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.609713][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,609][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.609842][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,609][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,609][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.609971][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610093][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610222][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610363][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610485][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610620][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,610][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.610945][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,610][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,611][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,611][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:13:10,611][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,611][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,611][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,612][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '1a4510c3-39a9-44ac-a07e-dd606a467920'} +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,612][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:13:10,613][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '1a4510c3-39a9-44ac-a07e-dd606a467920', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:13:10,613][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:13:10,613][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:13:10,613][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,613][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,614][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '304d47f5-7b3f-4b14-8adc-6d9e64bd6b4a'} +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:13:10,614][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': '304d47f5-7b3f-4b14-8adc-6d9e64bd6b4a', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,614][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,615][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,615][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,616][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'a576a575-ec85-458e-8908-b5356e39df66'} +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:13:10,616][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'a576a575-ec85-458e-8908-b5356e39df66', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:13:10,616][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,617][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,617][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,618][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:13:10,618][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:13:10,619][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,619][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Нужно уточнение для запуска LLM-валидации: Укажите дашборд (id или slug), окружение и провайдер LLM.'} +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,619][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,620][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '3d30e441-8a7c-49bb-b4bf-12ca577fde86'} +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,620][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,621][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:13:10,621][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:13:10,621][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,621][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,622][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '798ac626-af0f-46e4-b8ad-178d342d9a31'} +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:13:10,622][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:13:10,623][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 400: Confirmation expired +[2026-02-23 20:13:10,623][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624172][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624350][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624494][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624624][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624757][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,624][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.624892][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,624][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.625021][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.625147][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.625297][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.625424][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:13:10.625772][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:13:10,625][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:13:10,625][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'задеплой дашборд 88 в production', 'intent': {'domain': 'git', 'operation': 'deploy_dashboard', 'entities': {'dashboard_id': 88, 'environment': 'production'}, 'confidence': 0.92, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:13:10,626][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:13:10,626][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,200][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:23:00,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:23:00,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:23:00,200][DEBUG][superset_tools_app] [__init__][Entry] +[2026-02-23 20:23:00,200][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_plugins][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Action] [_load_plugins][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_environments][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_config][Entry] +[2026-02-23 20:23:00,201][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,202][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Backup' (ID: superset-backup) loaded successfully. +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,202][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,203][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'System Debug' (ID: system-debug) loaded successfully. +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,203][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:23:00,204][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,205][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,205][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Search Datasets' (ID: search-datasets) loaded successfully. +[2026-02-23 20:23:00,206][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,206][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,206][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,523][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dashboard LLM Validation' (ID: llm_dashboard_validation) loaded successfully. +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,523][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset LLM Documentation' (ID: llm_documentation) loaded successfully. +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,523][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:init][Entry] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:ensure_directories][Entry] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:get_storage_root][Entry] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [get_config][Entry] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Coherence:OK] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Action] [get_config][Exit] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Coherence:OK] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Action] [StoragePlugin:get_storage_root][Exit] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/backups +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin][Action] Ensured directory: /home/busya/dev/ss-tools-storage/repositorys +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Coherence:OK] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Action] [StoragePlugin:ensure_directories][Exit] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Coherence:OK] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Action] [StoragePlugin:init][Exit] +[2026-02-23 20:23:00,524][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:get_schema][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Action] [StoragePlugin:get_schema][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:id][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Action] [StoragePlugin:id][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:description][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Action] [StoragePlugin:description][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:version][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Action] [StoragePlugin:version][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:ui_route][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Action] [StoragePlugin:ui_route][Exit] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [StoragePlugin:name][Entry] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Coherence:OK] +[2026-02-23 20:23:00,525][DEBUG][superset_tools_app] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Action] [StoragePlugin:name][Exit] +[2026-02-23 20:23:00,526][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Storage Manager' (ID: storage-manager) loaded successfully. +[2026-02-23 20:23:00,526][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,526][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,526][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:23:00,739][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,740][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Dataset Mapper' (ID: dataset-mapper) loaded successfully. +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,740][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.__init__][Entry] +[2026-02-23 20:23:00,740][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] Initializing GitPlugin. +[2026-02-23 20:23:00,741][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:23:00,741][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:23:00,741][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:23:00,741][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [__init__][Entry] +[2026-02-23 20:23:00,741][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Entry] Initializing with legacy path ../config.json +[2026-02-23 20:23:00,741][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_config][Entry] +[2026-02-23 20:23:00,742][INFO][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] Configuration loaded from database +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Action] [_load_config][Exit] +[2026-02-23 20:23:00,742][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ConfigManager][Exit] Initialized +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:23:00,742][INFO][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] GitPlugin initialized with ../config.json +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Action] [GitPlugin.__init__][Exit] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.get_schema][Entry] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Action] [GitPlugin.get_schema][Exit] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.id][Entry] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Coherence:OK] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Action] [GitPlugin.id][Exit] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:23:00,742][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.description][Entry] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Action] [GitPlugin.description][Exit] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.version][Entry] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Action] [GitPlugin.version][Exit] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.ui_route][Entry] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Action] [GitPlugin.ui_route][Exit] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [GitPlugin.name][Entry] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Action] [GitPlugin.name][Exit] +[2026-02-23 20:23:00,743][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Git Integration' (ID: git-integration) loaded successfully. +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_load_module][Entry] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Coherence:OK] +[2026-02-23 20:23:00,743][DEBUG][superset_tools_app] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Action] [_load_module][Exit] +[2026-02-23 20:23:00,751][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [_register_plugin][Entry] +[2026-02-23 20:23:00,751][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Action] [_register_plugin][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_schema][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Action] [get_schema][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [get_environments][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Action] [get_environments][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [id][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [id][Action] [id][Action] [id][Action] [id][Action] [id][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [description][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [description][Action] [description][Action] [description][Action] [description][Action] [description][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [version][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [version][Action] [version][Action] [version][Action] [version][Action] [version][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [ui_route][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Action] [ui_route][Exit] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [name][Entry] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Coherence:OK] +[2026-02-23 20:23:00,752][DEBUG][superset_tools_app] [name][Action] [name][Action] [name][Action] [name][Action] [name][Exit] +[2026-02-23 20:23:00,753][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] Plugin 'Superset Dashboard Migration' (ID: superset-migration) loaded successfully. +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:23:00,753][INFO][superset_tools_app] PluginLoader initialized with directory: /home/busya/dev/ss-tools/backend/src/plugins +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [get_all_plugin_configs][Entry] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Coherence:OK] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Action] [get_all_plugin_configs][Exit] +[2026-02-23 20:23:00,753][INFO][superset_tools_app] Available plugins: ['Superset Dashboard Backup', 'System Debug', 'Search Datasets', 'Dashboard LLM Validation', 'Dataset LLM Documentation', 'Storage Manager', 'Dataset Mapper', 'Git Integration', 'Superset Dashboard Migration'] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [TaskManager.__init__][Entry] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskPersistenceService.__init__][Entry] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Coherence:OK] +[2026-02-23 20:23:00,753][DEBUG][superset_tools_app] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Action] [TaskPersistenceService.__init__][Exit] +[2026-02-23 20:23:00,754][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.load_persisted_tasks][Entry] +[2026-02-23 20:23:00,754][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskPersistenceService.load_tasks][Entry] +[2026-02-23 20:23:00,756][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Coherence:OK] +[2026-02-23 20:23:00,756][DEBUG][superset_tools_app] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Action] [TaskPersistenceService.load_tasks][Exit] +[2026-02-23 20:23:00,756][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Coherence:OK] +[2026-02-23 20:23:00,756][DEBUG][superset_tools_app] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Action] [TaskManager.load_persisted_tasks][Exit] +[2026-02-23 20:23:00,757][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Coherence:OK] +[2026-02-23 20:23:00,757][DEBUG][superset_tools_app] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Action] [TaskManager.__init__][Exit] +[2026-02-23 20:23:00,757][INFO][superset_tools_app] TaskManager initialized +[2026-02-23 20:23:00,757][DEBUG][superset_tools_app] [SchedulerService.__init__][Entry] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Coherence:OK] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Action] [SchedulerService.__init__][Exit] +[2026-02-23 20:23:00,758][INFO][superset_tools_app] SchedulerService initialized +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [ResourceService.__init__][Entry] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [GitService.__init__][Entry] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:23:00,758][INFO][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService][Action] Initialized ResourceService +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Coherence:OK] +[2026-02-23 20:23:00,758][DEBUG][superset_tools_app] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Action] [ResourceService.__init__][Exit] +[2026-02-23 20:23:00,758][INFO][superset_tools_app] ResourceService initialized +[2026-02-23 20:23:00,763][DEBUG][superset_tools_app] [GitService.__init__][Entry] +[2026-02-23 20:23:00,763][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Coherence:OK] +[2026-02-23 20:23:00,763][DEBUG][superset_tools_app] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Action] [GitService.__init__][Exit] +[2026-02-23 20:23:00,777][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,777][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,778][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'сделай что-нибудь', 'intent': {'domain': 'unknown', 'operation': 'clarify', 'entities': {}, 'confidence': 0.3, 'risk_level': 'safe', 'requires_confirmation': False}} +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,778][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,780][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.780708][PERMISSION_DENIED] User: limited Details: {'resource': 'tasks', 'action': 'READ'} +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,780][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.780902][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,780][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781047][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781191][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781349][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:migration', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781483][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-migration', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781666][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:superset-backup', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781821][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:backup', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,781][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.781950][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_dashboard_validation', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,781][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,782][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.782083][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:llm_documentation', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [log_security_event][Entry] PERMISSION_DENIED:limited +[2026-02-23 20:23:00,782][INFO][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [AUDIT][2026-02-23T17:23:00.782452][PERMISSION_DENIED] User: limited Details: {'resource': 'plugin:git', 'action': 'EXECUTE'} +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Coherence:OK] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Action] [log_security_event][Exit] +[2026-02-23 20:23:00,782][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'denied', 'message': 'создай ветку feature/test для дашборда 12', 'intent': {'domain': 'git', 'operation': 'create_branch', 'entities': {'dashboard_id': 12, 'branch_name': 'feature/test'}, 'confidence': 0.95, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Permission denied for plugin:git:EXECUTE'} +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,782][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,783][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,784][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,784][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 12', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'fa760cd6-7672-4292-8407-bd564d525cc6'} +[2026-02-23 20:23:00,785][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,785][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,785][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:23:00,785][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'fa760cd6-7672-4292-8407-bd564d525cc6', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 12, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:23:00,785][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:23:00,785][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,786][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,787][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 10', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'ff7d4afb-8725-4ab5-afe4-33fb4da3082f'} +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:23:00,787][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'ff7d4afb-8725-4ab5-afe4-33fb4da3082f', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 10, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,787][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,788][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'проверь статус задачи task-1', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': 'task-1'}, 'confidence': 0.92, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,788][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,789][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,789][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 33', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': 'ba9a6207-3ab0-4ede-a6bb-b2d55658fa1b'} +[2026-02-23 20:23:00,790][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,790][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,790][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:23:00,790][INFO][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.audit] {'decision': 'confirmed_execute', 'confirmation_id': 'ba9a6207-3ab0-4ede-a6bb-b2d55658fa1b', 'task_id': 'task-1', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 33, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}} +[2026-02-23 20:23:00,790][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:OK] +[2026-02-23 20:23:00,790][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Exit] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,791][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,792][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'executed', 'message': 'покажи статус последней задачи', 'intent': {'domain': 'status', 'operation': 'get_task_status', 'entities': {'task_id': None}, 'confidence': 0.66, 'risk_level': 'safe', 'requires_confirmation': False}, 'task_id': 'task-1'} +[2026-02-23 20:23:00,792][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,792][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,793][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [__init__][Entry] +[2026-02-23 20:23:00,794][INFO][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [SupersetClient.__init__][Enter] Initializing SupersetClient for env Development. +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Coherence:OK] +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Action] [__init__][Exit] +[2026-02-23 20:23:00,794][WARNING][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.dashboard_resolve][failed] ref=test1 env=dev error='types.SimpleNamespace' object has no attribute 'username' +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,794][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_clarification', 'message': 'Я хочу сделать валидацию дашборда test1', 'intent': {'domain': 'llm', 'operation': 'run_llm_validation', 'entities': {'dashboard_id': None, 'dashboard_ref': 'test1', 'environment': None, 'provider': None}, 'confidence': 0.64, 'risk_level': 'guarded', 'requires_confirmation': False}, 'error': 'Нужно уточнение для запуска LLM-валидации: Укажите дашборд (id или slug), окружение и провайдер LLM.'} +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,794][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,795][DEBUG][superset_tools_app] [assistant.conversations][Entry] +[2026-02-23 20:23:00,796][DEBUG][superset_tools_app] [assistant.conversations][Action] [assistant.conversations][Action] [assistant.conversations][Action] [assistant.conversations][Action] [assistant.conversations][Coherence:Failed] '<' not supported between instances of 'str' and 'datetime.datetime' +[2026-02-23 20:23:00,910][DEBUG][superset_tools_app] [assistant.history][Entry] +[2026-02-23 20:23:00,910][DEBUG][superset_tools_app] [assistant.history][Action] [assistant.history][Action] [assistant.history][Action] [assistant.history][Action] [assistant.history][Coherence:OK] +[2026-02-23 20:23:00,910][DEBUG][superset_tools_app] [assistant.history][Action] [assistant.history][Action] [assistant.history][Action] [assistant.history][Action] [assistant.history][Exit] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,911][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,912][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 18', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 18, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '826fa6f5-68f5-46a7-966b-1762050433c0'} +[2026-02-23 20:23:00,912][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,912][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] +[2026-02-23 20:23:00,912][DEBUG][superset_tools_app] [assistant.confirm][Entry] +[2026-02-23 20:23:00,912][DEBUG][superset_tools_app] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Action] [assistant.confirm][Coherence:Failed] 403: Confirmation does not belong to current user +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [assistant.send_message][Entry] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [get_all_providers][Entry] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Coherence:OK] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Action] [get_all_providers][Exit] +[2026-02-23 20:23:00,913][INFO][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.audit] {'decision': 'needs_confirmation', 'message': 'запусти миграцию с dev на prod для дашборда 19', 'intent': {'domain': 'migration', 'operation': 'execute_migration', 'entities': {'dashboard_id': 19, 'source_env': 'dev', 'target_env': 'prod'}, 'confidence': 0.95, 'risk_level': 'dangerous', 'requires_confirmation': True}, 'confirmation_id': '3e514581-a359-486c-ab02-373ef8af17e1'} +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Coherence:OK] +[2026-02-23 20:23:00,913][DEBUG][superset_tools_app] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Action] [assistant.send_message][Exit] diff --git a/backend/src/api/routes/reports.py b/backend/src/api/routes/reports.py index dca69f8..b1bdf0d 100644 --- a/backend/src/api/routes/reports.py +++ b/backend/src/api/routes/reports.py @@ -32,27 +32,28 @@ router = APIRouter(prefix="/api/reports", tags=["Reports"]) # @PARAM: field_name (str) - Query field name for diagnostics. # @RETURN: List - Parsed enum values. def _parse_csv_enum_list(raw: Optional[str], enum_cls, field_name: str) -> List: - if raw is None or not raw.strip(): - return [] - values = [item.strip() for item in raw.split(",") if item.strip()] - parsed = [] - invalid = [] - for value in values: - try: - parsed.append(enum_cls(value)) - except ValueError: - invalid.append(value) - if invalid: - raise HTTPException( - status_code=status.HTTP_400_BAD_REQUEST, - detail={ - "message": f"Invalid values for '{field_name}'", - "field": field_name, - "invalid_values": invalid, - "allowed_values": [item.value for item in enum_cls], - }, - ) - return parsed + with belief_scope("_parse_csv_enum_list"): + if raw is None or not raw.strip(): + return [] + values = [item.strip() for item in raw.split(",") if item.strip()] + parsed = [] + invalid = [] + for value in values: + try: + parsed.append(enum_cls(value)) + except ValueError: + invalid.append(value) + if invalid: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail={ + "message": f"Invalid values for '{field_name}'", + "field": field_name, + "invalid_values": invalid, + "allowed_values": [item.value for item in enum_cls], + }, + ) + return parsed # [/DEF:_parse_csv_enum_list:Function] diff --git a/backend/src/app.py b/backend/src/app.py index d3509a5..9530d90 100755 --- a/backend/src/app.py +++ b/backend/src/app.py @@ -21,7 +21,7 @@ import asyncio from .dependencies import get_task_manager, get_scheduler_service from .core.utils.network import NetworkError from .core.logger import logger, belief_scope -from .api.routes import plugins, tasks, settings, environments, mappings, migration, connections, git, storage, admin, llm, dashboards, datasets, reports, assistant +from .api.routes import plugins, tasks, settings, environments, mappings, migration, connections, git, storage, admin, llm, dashboards, datasets, reports, assistant from .api import auth # [DEF:App:Global] @@ -72,12 +72,12 @@ app.add_middleware( ) -# [DEF:log_requests:Function] -# @PURPOSE: Middleware to log incoming HTTP requests and their response status. +# [DEF:network_error_handler:Function] +# @PURPOSE: Global exception handler for NetworkError. # @PRE: request is a FastAPI Request object. -# @POST: Logs request and response details. +# @POST: Returns 503 HTTP Exception. # @PARAM: request (Request) - The incoming request object. -# @PARAM: call_next (Callable) - The next middleware or route handler. +# @PARAM: exc (NetworkError) - The exception instance. @app.exception_handler(NetworkError) async def network_error_handler(request: Request, exc: NetworkError): with belief_scope("network_error_handler"): @@ -86,26 +86,34 @@ async def network_error_handler(request: Request, exc: NetworkError): status_code=503, detail="Environment unavailable. Please check if the Superset instance is running." ) +# [/DEF:network_error_handler:Function] +# [DEF:log_requests:Function] +# @PURPOSE: Middleware to log incoming HTTP requests and their response status. +# @PRE: request is a FastAPI Request object. +# @POST: Logs request and response details. +# @PARAM: request (Request) - The incoming request object. +# @PARAM: call_next (Callable) - The next middleware or route handler. @app.middleware("http") async def log_requests(request: Request, call_next): - # Avoid spamming logs for polling endpoints - is_polling = request.url.path.endswith("/api/tasks") and request.method == "GET" - - if not is_polling: - logger.info(f"Incoming request: {request.method} {request.url.path}") - - try: - response = await call_next(request) + with belief_scope("log_requests"): + # Avoid spamming logs for polling endpoints + is_polling = request.url.path.endswith("/api/tasks") and request.method == "GET" + if not is_polling: - logger.info(f"Response status: {response.status_code} for {request.url.path}") - return response - except NetworkError as e: - logger.error(f"Network error caught in middleware: {e}") - raise HTTPException( - status_code=503, - detail="Environment unavailable. Please check if the Superset instance is running." - ) + logger.info(f"Incoming request: {request.method} {request.url.path}") + + try: + response = await call_next(request) + if not is_polling: + logger.info(f"Response status: {response.status_code} for {request.url.path}") + return response + except NetworkError as e: + logger.error(f"Network error caught in middleware: {e}") + raise HTTPException( + status_code=503, + detail="Environment unavailable. Please check if the Superset instance is running." + ) # [/DEF:log_requests:Function] # Include API routes @@ -119,12 +127,12 @@ app.include_router(environments.router, tags=["Environments"]) app.include_router(mappings.router, prefix="/api/mappings", tags=["Mappings"]) app.include_router(migration.router) app.include_router(git.router, prefix="/api/git", tags=["Git"]) -app.include_router(llm.router, prefix="/api/llm", tags=["LLM"]) -app.include_router(storage.router, prefix="/api/storage", tags=["Storage"]) -app.include_router(dashboards.router) -app.include_router(datasets.router) -app.include_router(reports.router) -app.include_router(assistant.router, prefix="/api/assistant", tags=["Assistant"]) +app.include_router(llm.router, prefix="/api/llm", tags=["LLM"]) +app.include_router(storage.router, prefix="/api/storage", tags=["Storage"]) +app.include_router(dashboards.router) +app.include_router(datasets.router) +app.include_router(reports.router) +app.include_router(assistant.router, prefix="/api/assistant", tags=["Assistant"]) # [DEF:api.include_routers:Action] @@ -249,12 +257,13 @@ if frontend_path.exists(): # @POST: Returns the requested file or index.html. @app.get("/{file_path:path}", include_in_schema=False) async def serve_spa(file_path: str): - # Only serve SPA for non-API paths - # API routes are registered separately and should be matched by FastAPI first - if file_path and (file_path.startswith("api/") or file_path.startswith("/api/") or file_path == "api"): - # This should not happen if API routers are properly registered - # Return 404 instead of serving HTML - raise HTTPException(status_code=404, detail=f"API endpoint not found: {file_path}") + with belief_scope("serve_spa"): + # Only serve SPA for non-API paths + # API routes are registered separately and should be matched by FastAPI first + if file_path and (file_path.startswith("api/") or file_path.startswith("/api/") or file_path == "api"): + # This should not happen if API routers are properly registered + # Return 404 instead of serving HTML + raise HTTPException(status_code=404, detail=f"API endpoint not found: {file_path}") full_path = frontend_path / file_path if file_path and full_path.is_file(): diff --git a/backend/src/core/logger.py b/backend/src/core/logger.py index c4fad7a..5e954c7 100755 --- a/backend/src/core/logger.py +++ b/backend/src/core/logger.py @@ -35,7 +35,19 @@ class BeliefFormatter(logging.Formatter): def format(self, record): anchor_id = getattr(_belief_state, 'anchor_id', None) if anchor_id: - record.msg = f"[{anchor_id}][Action] {record.msg}" + msg = str(record.msg) + # Supported molecular topology markers + markers = ("[EXPLORE]", "[REASON]", "[REFLECT]", "[COHERENCE:", "[Action]", "[Entry]", "[Exit]") + + # Avoid duplicating anchor or overriding explicit markers + if msg.startswith(f"[{anchor_id}]"): + pass + elif any(msg.startswith(m) for m in markers): + record.msg = f"[{anchor_id}]{msg}" + else: + # Default covalent bond + record.msg = f"[{anchor_id}][Action] {msg}" + return super().format(record) # [/DEF:format:Function] # [/DEF:BeliefFormatter:Class] @@ -75,12 +87,12 @@ def belief_scope(anchor_id: str, message: str = ""): try: yield # Log Coherence OK and Exit (DEBUG level to reduce noise) - logger.debug(f"[{anchor_id}][Coherence:OK]") + logger.debug("[COHERENCE:OK]") if _enable_belief_state: - logger.debug(f"[{anchor_id}][Exit]") + logger.debug("[Exit]") except Exception as e: # Log Coherence Failed (DEBUG level to reduce noise) - logger.debug(f"[{anchor_id}][Coherence:Failed] {str(e)}") + logger.debug(f"[COHERENCE:FAILED] {str(e)}") raise finally: # Restore old anchor @@ -275,5 +287,33 @@ logger.addHandler(websocket_log_handler) # Example usage: # logger.info("Application started", extra={"context_key": "context_value"}) # logger.error("An error occurred", exc_info=True) + +import types + +# [DEF:explore:Function] +# @PURPOSE: Logs an EXPLORE message (Van der Waals force) for searching, alternatives, and hypotheses. +# @SEMANTICS: log, explore, molecule +def explore(self, msg, *args, **kwargs): + self.warning(f"[EXPLORE] {msg}", *args, **kwargs) +# [/DEF:explore:Function] + +# [DEF:reason:Function] +# @PURPOSE: Logs a REASON message (Covalent bond) for strict deduction and core logic. +# @SEMANTICS: log, reason, molecule +def reason(self, msg, *args, **kwargs): + self.info(f"[REASON] {msg}", *args, **kwargs) +# [/DEF:reason:Function] + +# [DEF:reflect:Function] +# @PURPOSE: Logs a REFLECT message (Hydrogen bond) for self-check and structural validation. +# @SEMANTICS: log, reflect, molecule +def reflect(self, msg, *args, **kwargs): + self.debug(f"[REFLECT] {msg}", *args, **kwargs) +# [/DEF:reflect:Function] + +logger.explore = types.MethodType(explore, logger) +logger.reason = types.MethodType(reason, logger) +logger.reflect = types.MethodType(reflect, logger) + # [/DEF:Logger:Global] # [/DEF:LoggerModule:Module] \ No newline at end of file diff --git a/backend/src/core/task_manager/context.py b/backend/src/core/task_manager/context.py index e1b0083..b641d93 100644 --- a/backend/src/core/task_manager/context.py +++ b/backend/src/core/task_manager/context.py @@ -6,9 +6,11 @@ # @TIER: CRITICAL # @INVARIANT: Each TaskContext is bound to a single task execution. +# [SECTION: IMPORTS] # [SECTION: IMPORTS] from typing import Dict, Any, Callable from .task_logger import TaskLogger +from ..logger import belief_scope # [/SECTION] # [DEF:TaskContext:Class] @@ -44,13 +46,14 @@ class TaskContext: params: Dict[str, Any], default_source: str = "plugin" ): - self._task_id = task_id - self._params = params - self._logger = TaskLogger( - task_id=task_id, - add_log_fn=add_log_fn, - source=default_source - ) + with belief_scope("__init__"): + self._task_id = task_id + self._params = params + self._logger = TaskLogger( + task_id=task_id, + add_log_fn=add_log_fn, + source=default_source + ) # [/DEF:__init__:Function] # [DEF:task_id:Function] @@ -60,7 +63,8 @@ class TaskContext: # @RETURN: str - The task ID. @property def task_id(self) -> str: - return self._task_id + with belief_scope("task_id"): + return self._task_id # [/DEF:task_id:Function] # [DEF:logger:Function] @@ -70,7 +74,8 @@ class TaskContext: # @RETURN: TaskLogger - The logger instance. @property def logger(self) -> TaskLogger: - return self._logger + with belief_scope("logger"): + return self._logger # [/DEF:logger:Function] # [DEF:params:Function] @@ -80,7 +85,8 @@ class TaskContext: # @RETURN: Dict[str, Any] - The task parameters. @property def params(self) -> Dict[str, Any]: - return self._params + with belief_scope("params"): + return self._params # [/DEF:params:Function] # [DEF:get_param:Function] @@ -91,7 +97,8 @@ class TaskContext: # @PARAM: default (Any) - Default value if key not found. # @RETURN: Any - Parameter value or default. def get_param(self, key: str, default: Any = None) -> Any: - return self._params.get(key, default) + with belief_scope("get_param"): + return self._params.get(key, default) # [/DEF:get_param:Function] # [DEF:create_sub_context:Function] @@ -102,12 +109,13 @@ class TaskContext: # @RETURN: TaskContext - New context with different source. def create_sub_context(self, source: str) -> "TaskContext": """Create a sub-context with a different default source for logging.""" - return TaskContext( - task_id=self._task_id, - add_log_fn=self._logger._add_log, - params=self._params, - default_source=source - ) + with belief_scope("create_sub_context"): + return TaskContext( + task_id=self._task_id, + add_log_fn=self._logger._add_log, + params=self._params, + default_source=source + ) # [/DEF:create_sub_context:Function] # [/DEF:TaskContext:Class] diff --git a/backend/src/core/task_manager/manager.py b/backend/src/core/task_manager/manager.py index 759c996..2704f9e 100644 --- a/backend/src/core/task_manager/manager.py +++ b/backend/src/core/task_manager/manager.py @@ -1,4 +1,5 @@ # [DEF:TaskManagerModule:Module] +# @TIER: CRITICAL # @SEMANTICS: task, manager, lifecycle, execution, state # @PURPOSE: Manages the lifecycle of tasks, including their creation, execution, and state tracking. It uses a thread pool to run plugins asynchronously. # @LAYER: Core @@ -74,9 +75,10 @@ class TaskManager: # @POST: Logs are batch-written to database every LOG_FLUSH_INTERVAL seconds. def _flusher_loop(self): """Background thread that flushes log buffer to database.""" - while not self._flusher_stop_event.is_set(): - self._flush_logs() - self._flusher_stop_event.wait(self.LOG_FLUSH_INTERVAL) + with belief_scope("_flusher_loop"): + while not self._flusher_stop_event.is_set(): + self._flush_logs() + self._flusher_stop_event.wait(self.LOG_FLUSH_INTERVAL) # [/DEF:_flusher_loop:Function] # [DEF:_flush_logs:Function] @@ -85,23 +87,24 @@ class TaskManager: # @POST: All buffered logs are written to task_logs table. def _flush_logs(self): """Flush all buffered logs to the database.""" - with self._log_buffer_lock: - task_ids = list(self._log_buffer.keys()) - - for task_id in task_ids: + with belief_scope("_flush_logs"): with self._log_buffer_lock: - logs = self._log_buffer.pop(task_id, []) + task_ids = list(self._log_buffer.keys()) - if logs: - try: - self.log_persistence_service.add_logs(task_id, logs) - except Exception as e: - logger.error(f"Failed to flush logs for task {task_id}: {e}") - # Re-add logs to buffer on failure - with self._log_buffer_lock: - if task_id not in self._log_buffer: - self._log_buffer[task_id] = [] - self._log_buffer[task_id].extend(logs) + for task_id in task_ids: + with self._log_buffer_lock: + logs = self._log_buffer.pop(task_id, []) + + if logs: + try: + self.log_persistence_service.add_logs(task_id, logs) + except Exception as e: + logger.error(f"Failed to flush logs for task {task_id}: {e}") + # Re-add logs to buffer on failure + with self._log_buffer_lock: + if task_id not in self._log_buffer: + self._log_buffer[task_id] = [] + self._log_buffer[task_id].extend(logs) # [/DEF:_flush_logs:Function] # [DEF:_flush_task_logs:Function] @@ -111,14 +114,15 @@ class TaskManager: # @PARAM: task_id (str) - The task ID. def _flush_task_logs(self, task_id: str): """Flush logs for a specific task immediately.""" - with self._log_buffer_lock: - logs = self._log_buffer.pop(task_id, []) - - if logs: - try: - self.log_persistence_service.add_logs(task_id, logs) - except Exception as e: - logger.error(f"Failed to flush logs for task {task_id}: {e}") + with belief_scope("_flush_task_logs"): + with self._log_buffer_lock: + logs = self._log_buffer.pop(task_id, []) + + if logs: + try: + self.log_persistence_service.add_logs(task_id, logs) + except Exception as e: + logger.error(f"Failed to flush logs for task {task_id}: {e}") # [/DEF:_flush_task_logs:Function] # [DEF:create_task:Function] diff --git a/backend/src/core/task_manager/persistence.py b/backend/src/core/task_manager/persistence.py index 743eee0..b3b8746 100644 --- a/backend/src/core/task_manager/persistence.py +++ b/backend/src/core/task_manager/persistence.py @@ -1,4 +1,5 @@ # [DEF:TaskPersistenceModule:Module] +# @TIER: CRITICAL # @SEMANTICS: persistence, sqlite, sqlalchemy, task, storage # @PURPOSE: Handles the persistence of tasks using SQLAlchemy and the tasks.db database. # @LAYER: Core @@ -19,42 +20,65 @@ from ..logger import logger, belief_scope # [/SECTION] # [DEF:TaskPersistenceService:Class] +# @TIER: CRITICAL # @SEMANTICS: persistence, service, database, sqlalchemy # @PURPOSE: Provides methods to save and load tasks from the tasks.db database using SQLAlchemy. +# @INVARIANT: Persistence must handle potentially missing task fields natively. class TaskPersistenceService: + # [DEF:_json_load_if_needed:Function] + # @PURPOSE: Safely load JSON strings from DB if necessary + # @PRE: value is an arbitrary database value + # @POST: Returns parsed JSON object, list, string, or primitive @staticmethod def _json_load_if_needed(value): - if value is None: - return None - if isinstance(value, (dict, list)): - return value - if isinstance(value, str): - stripped = value.strip() - if stripped == "" or stripped.lower() == "null": + with belief_scope("TaskPersistenceService._json_load_if_needed"): + if value is None: return None - try: - return json.loads(stripped) - except json.JSONDecodeError: + if isinstance(value, (dict, list)): return value - return value + if isinstance(value, str): + stripped = value.strip() + if stripped == "" or stripped.lower() == "null": + return None + try: + return json.loads(stripped) + except json.JSONDecodeError: + return value + return value + # [/DEF:_json_load_if_needed:Function] + # [DEF:_parse_datetime:Function] + # @PURPOSE: Safely parse a datetime string from the database + # @PRE: value is an ISO string or datetime object + # @POST: Returns datetime object or None @staticmethod def _parse_datetime(value): - if value is None or isinstance(value, datetime): - return value - if isinstance(value, str): - try: - return datetime.fromisoformat(value) - except ValueError: - return None - return None - - @staticmethod - def _resolve_environment_id(session: Session, env_id: Optional[str]) -> Optional[str]: - if not env_id: + with belief_scope("TaskPersistenceService._parse_datetime"): + if value is None or isinstance(value, datetime): + return value + if isinstance(value, str): + try: + return datetime.fromisoformat(value) + except ValueError: + return None return None - exists = session.query(Environment.id).filter(Environment.id == env_id).first() - return env_id if exists else None + # [/DEF:_parse_datetime:Function] + + # [DEF:_resolve_environment_id:Function] + # @TIER: STANDARD + # @PURPOSE: Resolve environment id based on provided value or fallback to default + # @PRE: Session is active + # @POST: Environment ID is returned + @staticmethod + def _resolve_environment_id(session: Session, env_id: Optional[str]) -> str: + with belief_scope("_resolve_environment_id"): + if env_id: + return env_id + repo_env = session.query(Environment).filter_by(name="default").first() + if repo_env: + return str(repo_env.id) + return "default" + # [/DEF:_resolve_environment_id:Function] # [DEF:__init__:Function] # @PURPOSE: Initializes the persistence service. @@ -90,13 +114,14 @@ class TaskPersistenceService: # Ensure params and result are JSON serializable def json_serializable(obj): - if isinstance(obj, dict): - return {k: json_serializable(v) for k, v in obj.items()} - elif isinstance(obj, list): - return [json_serializable(v) for v in obj] - elif isinstance(obj, datetime): - return obj.isoformat() - return obj + with belief_scope("TaskPersistenceService.json_serializable"): + if isinstance(obj, dict): + return {k: json_serializable(v) for k, v in obj.items()} + elif isinstance(obj, list): + return [json_serializable(v) for v in obj] + elif isinstance(obj, datetime): + return obj.isoformat() + return obj record.params = json_serializable(task.params) record.result = json_serializable(task.result) @@ -227,9 +252,11 @@ class TaskLogPersistenceService: """ # [DEF:__init__:Function] - # @PURPOSE: Initialize the log persistence service. - # @POST: Service is ready. - def __init__(self): + # @TIER: STANDARD + # @PURPOSE: Initializes the TaskLogPersistenceService + # @PRE: config is provided or defaults are used + # @POST: Service is ready for log persistence + def __init__(self, config=None): pass # [/DEF:__init__:Function] diff --git a/backend/src/core/task_manager/task_logger.py b/backend/src/core/task_manager/task_logger.py index e850bb1..67d4bc1 100644 --- a/backend/src/core/task_manager/task_logger.py +++ b/backend/src/core/task_manager/task_logger.py @@ -15,6 +15,7 @@ from typing import Dict, Any, Optional, Callable # @PURPOSE: A wrapper around TaskManager._add_log that carries task_id and source context. # @TIER: CRITICAL # @INVARIANT: All log calls include the task_id and source. +# @TEST_DATA: task_logger -> {"task_id": "test_123", "source": "test_plugin"} # @UX_STATE: Idle -> Logging -> (system records log) class TaskLogger: """ @@ -71,6 +72,7 @@ class TaskLogger: # @PARAM: message (str) - Log message. # @PARAM: source (Optional[str]) - Override source for this log entry. # @PARAM: metadata (Optional[Dict]) - Additional structured data. + # @UX_STATE: Logging -> (writing internal log) def _log( self, level: str, @@ -90,6 +92,8 @@ class TaskLogger: # [DEF:debug:Function] # @PURPOSE: Log a DEBUG level message. + # @PRE: message is a string. + # @POST: Log entry added via internally with DEBUG level. # @PARAM: message (str) - Log message. # @PARAM: source (Optional[str]) - Override source. # @PARAM: metadata (Optional[Dict]) - Additional data. @@ -104,6 +108,8 @@ class TaskLogger: # [DEF:info:Function] # @PURPOSE: Log an INFO level message. + # @PRE: message is a string. + # @POST: Log entry added internally with INFO level. # @PARAM: message (str) - Log message. # @PARAM: source (Optional[str]) - Override source. # @PARAM: metadata (Optional[Dict]) - Additional data. @@ -118,6 +124,8 @@ class TaskLogger: # [DEF:warning:Function] # @PURPOSE: Log a WARNING level message. + # @PRE: message is a string. + # @POST: Log entry added internally with WARNING level. # @PARAM: message (str) - Log message. # @PARAM: source (Optional[str]) - Override source. # @PARAM: metadata (Optional[Dict]) - Additional data. @@ -132,6 +140,8 @@ class TaskLogger: # [DEF:error:Function] # @PURPOSE: Log an ERROR level message. + # @PRE: message is a string. + # @POST: Log entry added internally with ERROR level. # @PARAM: message (str) - Log message. # @PARAM: source (Optional[str]) - Override source. # @PARAM: metadata (Optional[Dict]) - Additional data. diff --git a/backend/src/models/report.py b/backend/src/models/report.py index ebbfdff..a1abb49 100644 --- a/backend/src/models/report.py +++ b/backend/src/models/report.py @@ -16,6 +16,9 @@ from pydantic import BaseModel, Field, field_validator, model_validator # [DEF:TaskType:Class] +# @TIER: CRITICAL +# @INVARIANT: Must contain valid generic task type mappings. +# @SEMANTICS: enum, type, task # @PURPOSE: Supported normalized task report types. class TaskType(str, Enum): LLM_VERIFICATION = "llm_verification" @@ -27,6 +30,9 @@ class TaskType(str, Enum): # [DEF:ReportStatus:Class] +# @TIER: CRITICAL +# @INVARIANT: TaskStatus enum mapping logic holds. +# @SEMANTICS: enum, status, task # @PURPOSE: Supported normalized report status values. class ReportStatus(str, Enum): SUCCESS = "success" @@ -37,6 +43,9 @@ class ReportStatus(str, Enum): # [DEF:ErrorContext:Class] +# @TIER: CRITICAL +# @INVARIANT: The properties accurately describe error state. +# @SEMANTICS: error, context, payload # @PURPOSE: Error and recovery context for failed/partial reports. class ErrorContext(BaseModel): code: Optional[str] = None @@ -46,6 +55,9 @@ class ErrorContext(BaseModel): # [DEF:TaskReport:Class] +# @TIER: CRITICAL +# @INVARIANT: Must represent canonical task record attributes. +# @SEMANTICS: report, model, summary # @PURPOSE: Canonical normalized report envelope for one task execution. class TaskReport(BaseModel): report_id: str @@ -69,6 +81,9 @@ class TaskReport(BaseModel): # [DEF:ReportQuery:Class] +# @TIER: CRITICAL +# @INVARIANT: Time and pagination queries are mutually consistent. +# @SEMANTICS: query, filter, search # @PURPOSE: Query object for server-side report filtering, sorting, and pagination. class ReportQuery(BaseModel): page: int = Field(default=1, ge=1) @@ -105,6 +120,9 @@ class ReportQuery(BaseModel): # [DEF:ReportCollection:Class] +# @TIER: CRITICAL +# @INVARIANT: Represents paginated data correctly. +# @SEMANTICS: collection, pagination # @PURPOSE: Paginated collection of normalized task reports. class ReportCollection(BaseModel): items: List[TaskReport] @@ -117,6 +135,9 @@ class ReportCollection(BaseModel): # [DEF:ReportDetailView:Class] +# @TIER: CRITICAL +# @INVARIANT: Incorporates a report and logs correctly. +# @SEMANTICS: view, detail, logs # @PURPOSE: Detailed report representation including diagnostics and recovery actions. class ReportDetailView(BaseModel): report: TaskReport diff --git a/backend/src/services/llm_provider.py b/backend/src/services/llm_provider.py index dd45bd6..84cd1fd 100644 --- a/backend/src/services/llm_provider.py +++ b/backend/src/services/llm_provider.py @@ -33,7 +33,8 @@ class EncryptionManager: # @PRE: data must be a non-empty string. # @POST: Returns encrypted string. def encrypt(self, data: str) -> str: - return self.fernet.encrypt(data.encode()).decode() + with belief_scope("encrypt"): + return self.fernet.encrypt(data.encode()).decode() # [/DEF:EncryptionManager.encrypt:Function] # [DEF:EncryptionManager.decrypt:Function] @@ -41,7 +42,8 @@ class EncryptionManager: # @PRE: encrypted_data must be a valid Fernet-encrypted string. # @POST: Returns original plaintext string. def decrypt(self, encrypted_data: str) -> str: - return self.fernet.decrypt(encrypted_data.encode()).decode() + with belief_scope("decrypt"): + return self.fernet.decrypt(encrypted_data.encode()).decode() # [/DEF:EncryptionManager.decrypt:Function] # [/DEF:EncryptionManager:Class] diff --git a/backend/src/services/reports/normalizer.py b/backend/src/services/reports/normalizer.py index b643d79..25146a8 100644 --- a/backend/src/services/reports/normalizer.py +++ b/backend/src/services/reports/normalizer.py @@ -12,6 +12,7 @@ from datetime import datetime from typing import Any, Dict, Optional +from ...core.logger import belief_scope from ...core.task_manager.models import Task, TaskStatus from ...models.report import ErrorContext, ReportStatus, TaskReport from .type_profiles import get_type_profile, resolve_task_type @@ -25,14 +26,15 @@ from .type_profiles import get_type_profile, resolve_task_type # @PARAM: status (Any) - Internal task status value. # @RETURN: ReportStatus - Canonical report status. def status_to_report_status(status: Any) -> ReportStatus: - raw = str(status.value if isinstance(status, TaskStatus) else status).upper() - if raw == TaskStatus.SUCCESS.value: - return ReportStatus.SUCCESS - if raw == TaskStatus.FAILED.value: - return ReportStatus.FAILED - if raw in {TaskStatus.PENDING.value, TaskStatus.RUNNING.value, TaskStatus.AWAITING_INPUT.value, TaskStatus.AWAITING_MAPPING.value}: - return ReportStatus.IN_PROGRESS - return ReportStatus.PARTIAL + with belief_scope("status_to_report_status"): + raw = str(status.value if isinstance(status, TaskStatus) else status).upper() + if raw == TaskStatus.SUCCESS.value: + return ReportStatus.SUCCESS + if raw == TaskStatus.FAILED.value: + return ReportStatus.FAILED + if raw in {TaskStatus.PENDING.value, TaskStatus.RUNNING.value, TaskStatus.AWAITING_INPUT.value, TaskStatus.AWAITING_MAPPING.value}: + return ReportStatus.IN_PROGRESS + return ReportStatus.PARTIAL # [/DEF:status_to_report_status:Function] @@ -44,19 +46,20 @@ def status_to_report_status(status: Any) -> ReportStatus: # @PARAM: report_status (ReportStatus) - Canonical status. # @RETURN: str - Normalized summary. def build_summary(task: Task, report_status: ReportStatus) -> str: - result = task.result - if isinstance(result, dict): - for key in ("summary", "message", "status_message", "description"): - value = result.get(key) - if isinstance(value, str) and value.strip(): - return value.strip() - if report_status == ReportStatus.SUCCESS: - return "Task completed successfully" - if report_status == ReportStatus.FAILED: - return "Task failed" - if report_status == ReportStatus.IN_PROGRESS: - return "Task is in progress" - return "Task completed with partial data" + with belief_scope("build_summary"): + result = task.result + if isinstance(result, dict): + for key in ("summary", "message", "status_message", "description"): + value = result.get(key) + if isinstance(value, str) and value.strip(): + return value.strip() + if report_status == ReportStatus.SUCCESS: + return "Task completed successfully" + if report_status == ReportStatus.FAILED: + return "Task failed" + if report_status == ReportStatus.IN_PROGRESS: + return "Task is in progress" + return "Task completed with partial data" # [/DEF:build_summary:Function] @@ -68,38 +71,39 @@ def build_summary(task: Task, report_status: ReportStatus) -> str: # @PARAM: report_status (ReportStatus) - Canonical status. # @RETURN: Optional[ErrorContext] - Error context block. def extract_error_context(task: Task, report_status: ReportStatus) -> Optional[ErrorContext]: - if report_status not in {ReportStatus.FAILED, ReportStatus.PARTIAL}: - return None + with belief_scope("extract_error_context"): + if report_status not in {ReportStatus.FAILED, ReportStatus.PARTIAL}: + return None - result = task.result if isinstance(task.result, dict) else {} - message = None - code = None - next_actions = [] + result = task.result if isinstance(task.result, dict) else {} + message = None + code = None + next_actions = [] - if isinstance(result.get("error"), dict): - error_obj = result.get("error", {}) - message = error_obj.get("message") or message - code = error_obj.get("code") or code - actions = error_obj.get("next_actions") - if isinstance(actions, list): - next_actions = [str(action) for action in actions if str(action).strip()] + if isinstance(result.get("error"), dict): + error_obj = result.get("error", {}) + message = error_obj.get("message") or message + code = error_obj.get("code") or code + actions = error_obj.get("next_actions") + if isinstance(actions, list): + next_actions = [str(action) for action in actions if str(action).strip()] - if not message: - message = result.get("error_message") if isinstance(result.get("error_message"), str) else None + if not message: + message = result.get("error_message") if isinstance(result.get("error_message"), str) else None - if not message: - for log in reversed(task.logs): - if str(log.level).upper() == "ERROR" and log.message: - message = log.message - break + if not message: + for log in reversed(task.logs): + if str(log.level).upper() == "ERROR" and log.message: + message = log.message + break - if not message: - message = "Not provided" + if not message: + message = "Not provided" - if not next_actions: - next_actions = ["Review task diagnostics", "Retry the operation"] + if not next_actions: + next_actions = ["Review task diagnostics", "Retry the operation"] - return ErrorContext(code=code, message=message, next_actions=next_actions) + return ErrorContext(code=code, message=message, next_actions=next_actions) # [/DEF:extract_error_context:Function] @@ -110,43 +114,44 @@ def extract_error_context(task: Task, report_status: ReportStatus) -> Optional[E # @PARAM: task (Task) - Source task. # @RETURN: TaskReport - Canonical normalized report. def normalize_task_report(task: Task) -> TaskReport: - task_type = resolve_task_type(task.plugin_id) - report_status = status_to_report_status(task.status) - profile = get_type_profile(task_type) + with belief_scope("normalize_task_report"): + task_type = resolve_task_type(task.plugin_id) + report_status = status_to_report_status(task.status) + profile = get_type_profile(task_type) - started_at = task.started_at if isinstance(task.started_at, datetime) else None - updated_at = task.finished_at if isinstance(task.finished_at, datetime) else None - if not updated_at: - updated_at = started_at or datetime.utcnow() + started_at = task.started_at if isinstance(task.started_at, datetime) else None + updated_at = task.finished_at if isinstance(task.finished_at, datetime) else None + if not updated_at: + updated_at = started_at or datetime.utcnow() - details: Dict[str, Any] = { - "profile": { - "display_label": profile.get("display_label"), - "visual_variant": profile.get("visual_variant"), - "icon_token": profile.get("icon_token"), - "emphasis_rules": profile.get("emphasis_rules", []), - }, - "result": task.result if task.result is not None else {"note": "Not provided"}, - } + details: Dict[str, Any] = { + "profile": { + "display_label": profile.get("display_label"), + "visual_variant": profile.get("visual_variant"), + "icon_token": profile.get("icon_token"), + "emphasis_rules": profile.get("emphasis_rules", []), + }, + "result": task.result if task.result is not None else {"note": "Not provided"}, + } - source_ref: Dict[str, Any] = {} - if isinstance(task.params, dict): - for key in ("environment_id", "source_env_id", "target_env_id", "dashboard_id", "dataset_id", "resource_id"): - if key in task.params: - source_ref[key] = task.params.get(key) + source_ref: Dict[str, Any] = {} + if isinstance(task.params, dict): + for key in ("environment_id", "source_env_id", "target_env_id", "dashboard_id", "dataset_id", "resource_id"): + if key in task.params: + source_ref[key] = task.params.get(key) - return TaskReport( - report_id=task.id, - task_id=task.id, - task_type=task_type, - status=report_status, - started_at=started_at, - updated_at=updated_at, - summary=build_summary(task, report_status), - details=details, - error_context=extract_error_context(task, report_status), - source_ref=source_ref or None, - ) + return TaskReport( + report_id=task.id, + task_id=task.id, + task_type=task_type, + status=report_status, + started_at=started_at, + updated_at=updated_at, + summary=build_summary(task, report_status), + details=details, + error_context=extract_error_context(task, report_status), + source_ref=source_ref or None, + ) # [/DEF:normalize_task_report:Function] # [/DEF:backend.src.services.reports.normalizer:Module] \ No newline at end of file diff --git a/backend/src/services/reports/report_service.py b/backend/src/services/reports/report_service.py index 95dbe9b..2f10732 100644 --- a/backend/src/services/reports/report_service.py +++ b/backend/src/services/reports/report_service.py @@ -12,6 +12,8 @@ from datetime import datetime, timezone from typing import List, Optional +from ...core.logger import belief_scope + from ...core.task_manager import TaskManager from ...models.report import ReportCollection, ReportDetailView, ReportQuery, ReportStatus, TaskReport, TaskType from .normalizer import normalize_task_report @@ -33,7 +35,8 @@ class ReportsService: # @INVARIANT: Constructor performs no task mutations. # @PARAM: task_manager (TaskManager) - Task manager providing source task history. def __init__(self, task_manager: TaskManager): - self.task_manager = task_manager + with belief_scope("__init__"): + self.task_manager = task_manager # [/DEF:__init__:Function] # [DEF:_load_normalized_reports:Function] @@ -43,9 +46,10 @@ class ReportsService: # @INVARIANT: Every returned item is a TaskReport. # @RETURN: List[TaskReport] - Reports sorted later by list logic. def _load_normalized_reports(self) -> List[TaskReport]: - tasks = self.task_manager.get_all_tasks() - reports = [normalize_task_report(task) for task in tasks] - return reports + with belief_scope("_load_normalized_reports"): + tasks = self.task_manager.get_all_tasks() + reports = [normalize_task_report(task) for task in tasks] + return reports # [/DEF:_load_normalized_reports:Function] # [DEF:_to_utc_datetime:Function] @@ -56,11 +60,12 @@ class ReportsService: # @PARAM: value (Optional[datetime]) - Source datetime value. # @RETURN: Optional[datetime] - UTC-aware datetime or None. def _to_utc_datetime(self, value: Optional[datetime]) -> Optional[datetime]: - if value is None: - return None - if value.tzinfo is None: - return value.replace(tzinfo=timezone.utc) - return value.astimezone(timezone.utc) + with belief_scope("_to_utc_datetime"): + if value is None: + return None + if value.tzinfo is None: + return value.replace(tzinfo=timezone.utc) + return value.astimezone(timezone.utc) # [/DEF:_to_utc_datetime:Function] # [DEF:_datetime_sort_key:Function] @@ -71,10 +76,11 @@ class ReportsService: # @PARAM: report (TaskReport) - Report item. # @RETURN: float - UTC timestamp key. def _datetime_sort_key(self, report: TaskReport) -> float: - updated = self._to_utc_datetime(report.updated_at) - if updated is None: - return 0.0 - return updated.timestamp() + with belief_scope("_datetime_sort_key"): + updated = self._to_utc_datetime(report.updated_at) + if updated is None: + return 0.0 + return updated.timestamp() # [/DEF:_datetime_sort_key:Function] # [DEF:_matches_query:Function] @@ -86,24 +92,25 @@ class ReportsService: # @PARAM: query (ReportQuery) - Applied query. # @RETURN: bool - True if report matches all filters. def _matches_query(self, report: TaskReport, query: ReportQuery) -> bool: - if query.task_types and report.task_type not in query.task_types: - return False - if query.statuses and report.status not in query.statuses: - return False - report_updated_at = self._to_utc_datetime(report.updated_at) - query_time_from = self._to_utc_datetime(query.time_from) - query_time_to = self._to_utc_datetime(query.time_to) - - if query_time_from and report_updated_at and report_updated_at < query_time_from: - return False - if query_time_to and report_updated_at and report_updated_at > query_time_to: - return False - if query.search: - needle = query.search.lower() - haystack = f"{report.summary} {report.task_type.value} {report.status.value}".lower() - if needle not in haystack: + with belief_scope("_matches_query"): + if query.task_types and report.task_type not in query.task_types: return False - return True + if query.statuses and report.status not in query.statuses: + return False + report_updated_at = self._to_utc_datetime(report.updated_at) + query_time_from = self._to_utc_datetime(query.time_from) + query_time_to = self._to_utc_datetime(query.time_to) + + if query_time_from and report_updated_at and report_updated_at < query_time_from: + return False + if query_time_to and report_updated_at and report_updated_at > query_time_to: + return False + if query.search: + needle = query.search.lower() + haystack = f"{report.summary} {report.task_type.value} {report.status.value}".lower() + if needle not in haystack: + return False + return True # [/DEF:_matches_query:Function] # [DEF:_sort_reports:Function] @@ -115,16 +122,17 @@ class ReportsService: # @PARAM: query (ReportQuery) - Sort config. # @RETURN: List[TaskReport] - Sorted reports. def _sort_reports(self, reports: List[TaskReport], query: ReportQuery) -> List[TaskReport]: - reverse = query.sort_order == "desc" + with belief_scope("_sort_reports"): + reverse = query.sort_order == "desc" - if query.sort_by == "status": - reports.sort(key=lambda item: item.status.value, reverse=reverse) - elif query.sort_by == "task_type": - reports.sort(key=lambda item: item.task_type.value, reverse=reverse) - else: - reports.sort(key=self._datetime_sort_key, reverse=reverse) + if query.sort_by == "status": + reports.sort(key=lambda item: item.status.value, reverse=reverse) + elif query.sort_by == "task_type": + reports.sort(key=lambda item: item.task_type.value, reverse=reverse) + else: + reports.sort(key=self._datetime_sort_key, reverse=reverse) - return reports + return reports # [/DEF:_sort_reports:Function] # [DEF:list_reports:Function] @@ -134,24 +142,25 @@ class ReportsService: # @PARAM: query (ReportQuery) - List filters and pagination. # @RETURN: ReportCollection - Paginated unified reports payload. def list_reports(self, query: ReportQuery) -> ReportCollection: - reports = self._load_normalized_reports() - filtered = [report for report in reports if self._matches_query(report, query)] - sorted_reports = self._sort_reports(filtered, query) + with belief_scope("list_reports"): + reports = self._load_normalized_reports() + filtered = [report for report in reports if self._matches_query(report, query)] + sorted_reports = self._sort_reports(filtered, query) - total = len(sorted_reports) - start = (query.page - 1) * query.page_size - end = start + query.page_size - items = sorted_reports[start:end] - has_next = end < total + total = len(sorted_reports) + start = (query.page - 1) * query.page_size + end = start + query.page_size + items = sorted_reports[start:end] + has_next = end < total - return ReportCollection( - items=items, - total=total, - page=query.page, - page_size=query.page_size, - has_next=has_next, - applied_filters=query, - ) + return ReportCollection( + items=items, + total=total, + page=query.page, + page_size=query.page_size, + has_next=has_next, + applied_filters=query, + ) # [/DEF:list_reports:Function] # [DEF:get_report_detail:Function] @@ -161,34 +170,35 @@ class ReportsService: # @PARAM: report_id (str) - Stable report identifier. # @RETURN: Optional[ReportDetailView] - Detailed report or None if not found. def get_report_detail(self, report_id: str) -> Optional[ReportDetailView]: - reports = self._load_normalized_reports() - target = next((report for report in reports if report.report_id == report_id), None) - if not target: - return None + with belief_scope("get_report_detail"): + reports = self._load_normalized_reports() + target = next((report for report in reports if report.report_id == report_id), None) + if not target: + return None - timeline = [] - if target.started_at: - timeline.append({"event": "started", "at": target.started_at.isoformat()}) - timeline.append({"event": "updated", "at": target.updated_at.isoformat()}) + timeline = [] + if target.started_at: + timeline.append({"event": "started", "at": target.started_at.isoformat()}) + timeline.append({"event": "updated", "at": target.updated_at.isoformat()}) - diagnostics = target.details or {} - if not diagnostics: - diagnostics = {"note": "Not provided"} - if target.error_context: - diagnostics["error_context"] = target.error_context.model_dump() + diagnostics = target.details or {} + if not diagnostics: + diagnostics = {"note": "Not provided"} + if target.error_context: + diagnostics["error_context"] = target.error_context.model_dump() - next_actions = [] - if target.error_context and target.error_context.next_actions: - next_actions = target.error_context.next_actions - elif target.status in {ReportStatus.FAILED, ReportStatus.PARTIAL}: - next_actions = ["Review diagnostics", "Retry task if applicable"] + next_actions = [] + if target.error_context and target.error_context.next_actions: + next_actions = target.error_context.next_actions + elif target.status in {ReportStatus.FAILED, ReportStatus.PARTIAL}: + next_actions = ["Review diagnostics", "Retry task if applicable"] - return ReportDetailView( - report=target, - timeline=timeline, - diagnostics=diagnostics, - next_actions=next_actions, - ) + return ReportDetailView( + report=target, + timeline=timeline, + diagnostics=diagnostics, + next_actions=next_actions, + ) # [/DEF:get_report_detail:Function] # [/DEF:ReportsService:Class] diff --git a/backend/src/services/reports/type_profiles.py b/backend/src/services/reports/type_profiles.py index 9346cd9..f2188fb 100644 --- a/backend/src/services/reports/type_profiles.py +++ b/backend/src/services/reports/type_profiles.py @@ -9,6 +9,7 @@ # [SECTION: IMPORTS] from typing import Any, Dict, Optional +from ...core.logger import belief_scope from ...models.report import TaskType # [/SECTION] @@ -71,10 +72,11 @@ TASK_TYPE_PROFILES: Dict[TaskType, Dict[str, Any]] = { # @PARAM: plugin_id (Optional[str]) - Source plugin/task identifier from task record. # @RETURN: TaskType - Resolved canonical type or UNKNOWN fallback. def resolve_task_type(plugin_id: Optional[str]) -> TaskType: - normalized = (plugin_id or "").strip() - if not normalized: - return TaskType.UNKNOWN - return PLUGIN_TO_TASK_TYPE.get(normalized, TaskType.UNKNOWN) + with belief_scope("resolve_task_type"): + normalized = (plugin_id or "").strip() + if not normalized: + return TaskType.UNKNOWN + return PLUGIN_TO_TASK_TYPE.get(normalized, TaskType.UNKNOWN) # [/DEF:resolve_task_type:Function] @@ -85,7 +87,8 @@ def resolve_task_type(plugin_id: Optional[str]) -> TaskType: # @PARAM: task_type (TaskType) - Canonical task type. # @RETURN: Dict[str, Any] - Profile metadata used by normalization and UI contracts. def get_type_profile(task_type: TaskType) -> Dict[str, Any]: - return TASK_TYPE_PROFILES.get(task_type, TASK_TYPE_PROFILES[TaskType.UNKNOWN]) + with belief_scope("get_type_profile"): + return TASK_TYPE_PROFILES.get(task_type, TASK_TYPE_PROFILES[TaskType.UNKNOWN]) # [/DEF:get_type_profile:Function] # [/DEF:backend.src.services.reports.type_profiles:Module] \ No newline at end of file diff --git a/frontend/src/components/TaskLogViewer.svelte b/frontend/src/components/TaskLogViewer.svelte index d062401..84ee115 100644 --- a/frontend/src/components/TaskLogViewer.svelte +++ b/frontend/src/components/TaskLogViewer.svelte @@ -12,6 +12,8 @@ /** * @TIER CRITICAL * @PURPOSE Displays detailed logs for a specific task inline or in a modal using TaskLogPanel. + * @PRE Needs a valid taskId to fetch logs for. + * @POST task logs are displayed and updated in real time. * @UX_STATE Loading -> Shows spinner/text while fetching initial logs * @UX_STATE Streaming -> Displays logs with auto-scroll, real-time appending * @UX_STATE Error -> Shows error message with recovery option @@ -42,6 +44,9 @@ let shouldShow = $derived(inline || show); // [DEF:handleRealTimeLogs:Action] + // @PURPOSE: Sync real-time logs to the current log list + // @PRE: None + // @POST: logs are updated with new real-time log entries $effect(() => { if (realTimeLogs && realTimeLogs.length > 0) { const lastLog = realTimeLogs[realTimeLogs.length - 1]; @@ -58,11 +63,20 @@ // [/DEF:handleRealTimeLogs:Action] // [DEF:fetchLogs:Function] + // @PURPOSE: Fetches logs for a given task ID + // @PRE: taskId is set + // @POST: logs are populated with API response async function fetchLogs() { if (!taskId) return; try { + console.log(`[TaskLogViewer][API][fetchLogs:STARTED] id=${taskId}`); logs = await getTaskLogs(taskId); + console.log(`[TaskLogViewer][API][fetchLogs:SUCCESS] id=${taskId}`); } catch (e) { + console.error( + `[TaskLogViewer][API][fetchLogs:FAILED] id=${taskId}`, + e, + ); error = e.message; } finally { loading = false; @@ -70,13 +84,25 @@ } // [/DEF:fetchLogs:Function] + // [DEF:handleFilterChange:Function] + // @PURPOSE: Updates filter conditions for the log viewer + // @PRE: event contains detail with source and level + // @POST: Log viewer filters updated function handleFilterChange(event) { + console.log("[TaskLogViewer][UI][handleFilterChange:START]"); const { source, level } = event.detail; } + // [/DEF:handleFilterChange:Function] + // [DEF:handleRefresh:Function] + // @PURPOSE: Refreshes the logs by polling the API + // @PRE: None + // @POST: Logs refetched function handleRefresh() { + console.log("[TaskLogViewer][UI][handleRefresh:START]"); fetchLogs(); } + // [/DEF:handleRefresh:Function] $effect(() => { if (shouldShow && taskId) { @@ -104,6 +130,11 @@ {#if shouldShow} + + + + + {#if inline}
{#if loading && logs.length === 0} @@ -136,7 +167,13 @@ /> {/if}
+ {:else} + + + + +
{/if} {/if} +// [/DEF:showModal:Component] diff --git a/frontend/src/lib/api/reports.js b/frontend/src/lib/api/reports.js index 328f91c..58e8af1 100644 --- a/frontend/src/lib/api/reports.js +++ b/frontend/src/lib/api/reports.js @@ -13,6 +13,7 @@ import { api } from '../api.js'; // @PRE: options is an object with optional report query fields. // @POST: Returns URL query string without leading '?'. export function buildReportQueryString(options = {}) { + console.log("[reports][api][buildReportQueryString:START]"); const params = new URLSearchParams(); if (options.page != null) params.append('page', String(options.page)); @@ -40,6 +41,7 @@ export function buildReportQueryString(options = {}) { // @PRE: error may be Error/string/object. // @POST: Returns structured error object. export function normalizeApiError(error) { + console.log("[reports][api][normalizeApiError:START]"); const message = (error && typeof error.message === 'string' && error.message) || (typeof error === 'string' && error) || @@ -59,9 +61,13 @@ export function normalizeApiError(error) { // @POST: Returns parsed payload or structured error for UI-state mapping. export async function getReports(options = {}) { try { + console.log("[reports][api][getReports:STARTED]", options); const query = buildReportQueryString(options); - return await api.fetchApi(`/reports${query ? `?${query}` : ''}`); + const res = await api.fetchApi(`/reports${query ? `?${query}` : ''}`); + console.log("[reports][api][getReports:SUCCESS]", res); + return res; } catch (error) { + console.error("[reports][api][getReports:FAILED]", error); throw normalizeApiError(error); } } @@ -73,8 +79,12 @@ export async function getReports(options = {}) { // @POST: Returns parsed detail payload or structured error object. export async function getReportDetail(reportId) { try { - return await api.fetchApi(`/reports/${reportId}`); + console.log(`[reports][api][getReportDetail:STARTED] id=${reportId}`); + const res = await api.fetchApi(`/reports/${reportId}`); + console.log(`[reports][api][getReportDetail:SUCCESS] id=${reportId}`); + return res; } catch (error) { + console.error(`[reports][api][getReportDetail:FAILED] id=${reportId}`, error); throw normalizeApiError(error); } } diff --git a/frontend/src/lib/components/assistant/AssistantChatPanel.svelte b/frontend/src/lib/components/assistant/AssistantChatPanel.svelte index 6d6b79e..9327563 100644 --- a/frontend/src/lib/components/assistant/AssistantChatPanel.svelte +++ b/frontend/src/lib/components/assistant/AssistantChatPanel.svelte @@ -23,35 +23,35 @@ * @UX_TEST: NeedsConfirmation -> {click: confirm action, expected: started response with task_id} */ - import { onMount } from 'svelte'; - import { goto } from '$app/navigation'; - import { t } from '$lib/i18n'; - import Icon from '$lib/ui/Icon.svelte'; - import { openDrawerForTask } from '$lib/stores/taskDrawer.js'; + import { onMount } from "svelte"; + import { goto } from "$app/navigation"; + import { t } from "$lib/i18n"; + import Icon from "$lib/ui/Icon.svelte"; + import { openDrawerForTask } from "$lib/stores/taskDrawer.js"; import { assistantChatStore, closeAssistantChat, setAssistantConversationId, - } from '$lib/stores/assistantChat.js'; + } from "$lib/stores/assistantChat.js"; import { sendAssistantMessage, confirmAssistantOperation, cancelAssistantOperation, getAssistantHistory, getAssistantConversations, - } from '$lib/api/assistant.js'; + } from "$lib/api/assistant.js"; const HISTORY_PAGE_SIZE = 30; const CONVERSATIONS_PAGE_SIZE = 20; - let input = ''; + let input = ""; let loading = false; let loadingHistory = false; let loadingMoreHistory = false; let loadingConversations = false; let messages = []; let conversations = []; - let conversationFilter = 'active'; + let conversationFilter = "active"; let activeConversationsTotal = 0; let archivedConversationsTotal = 0; let historyPage = 1; @@ -77,7 +77,12 @@ const requestVersion = ++historyLoadVersion; loadingHistory = true; try { - const history = await getAssistantHistory(1, HISTORY_PAGE_SIZE, targetConversationId, true); + const history = await getAssistantHistory( + 1, + HISTORY_PAGE_SIZE, + targetConversationId, + true, + ); if (requestVersion !== historyLoadVersion) { return; } @@ -87,13 +92,21 @@ })); historyPage = 1; historyHasNext = Boolean(history.has_next); - if (!targetConversationId && history.conversation_id && history.conversation_id !== conversationId) { + if ( + !targetConversationId && + history.conversation_id && + history.conversation_id !== conversationId + ) { setAssistantConversationId(history.conversation_id); } initialized = true; - console.log('[AssistantChatPanel][Coherence:OK] History loaded'); + // prettier-ignore + console.log("[AssistantChatPanel][history][loadHistory:SUCCESS] History loaded"); } catch (err) { - console.error('[AssistantChatPanel][Coherence:Failed] Failed to load history', err); + console.error( + "[AssistantChatPanel][history][loadHistory:FAILED] Failed to load history", + err, + ); } finally { loadingHistory = false; } @@ -111,23 +124,30 @@ loadingConversations = true; try { const page = reset ? 1 : conversationsPage + 1; - const includeArchived = conversationFilter === 'archived'; - const archivedOnly = conversationFilter === 'archived'; + const includeArchived = conversationFilter === "archived"; + const archivedOnly = conversationFilter === "archived"; const response = await getAssistantConversations( page, CONVERSATIONS_PAGE_SIZE, includeArchived, - '', + "", archivedOnly, ); const rows = response.items || []; conversations = reset ? rows : [...conversations, ...rows]; conversationsPage = page; conversationsHasNext = Boolean(response.has_next); - activeConversationsTotal = response.active_total ?? activeConversationsTotal; - archivedConversationsTotal = response.archived_total ?? archivedConversationsTotal; + activeConversationsTotal = + response.active_total ?? activeConversationsTotal; + archivedConversationsTotal = + response.archived_total ?? archivedConversationsTotal; + // prettier-ignore + console.log("[AssistantChatPanel][conversations][loadConversations:SUCCESS]"); } catch (err) { - console.error('[AssistantChatPanel][Coherence:Failed] Failed to load conversations', err); + console.error( + "[AssistantChatPanel][conversations][loadConversations:FAILED]", + err, + ); } finally { loadingConversations = false; } @@ -141,11 +161,22 @@ * @POST: Older messages are prepended while preserving order. */ async function loadOlderMessages() { - if (loadingMoreHistory || loadingHistory || !historyHasNext || !conversationId) return; + if ( + loadingMoreHistory || + loadingHistory || + !historyHasNext || + !conversationId + ) + return; loadingMoreHistory = true; try { const nextPage = historyPage + 1; - const history = await getAssistantHistory(nextPage, HISTORY_PAGE_SIZE, conversationId, true); + const history = await getAssistantHistory( + nextPage, + HISTORY_PAGE_SIZE, + conversationId, + true, + ); const chunk = (history.items || []).map((msg) => ({ ...msg, actions: msg.actions || msg.metadata?.actions || [], @@ -155,8 +186,12 @@ messages = [...uniqueChunk, ...messages]; historyPage = nextPage; historyHasNext = Boolean(history.has_next); + console.log("[AssistantChatPanel][history][loadOlderMessages:SUCCESS]"); } catch (err) { - console.error('[AssistantChatPanel][Coherence:Failed] Failed to load older messages', err); + console.error( + "[AssistantChatPanel][history][loadOlderMessages:FAILED]", + err, + ); } finally { loadingMoreHistory = false; } @@ -170,7 +205,9 @@ $: if (isOpen && initialized && conversationId) { // Re-load only when user switched to another conversation. - const currentFirstConversationId = messages.length ? messages[0].conversation_id : conversationId; + const currentFirstConversationId = messages.length + ? messages[0].conversation_id + : conversationId; if (currentFirstConversationId !== conversationId) { loadHistory(); } @@ -183,11 +220,12 @@ * @POST: user message appears at the end of messages list. */ function appendLocalUserMessage(text) { + console.log("[AssistantChatPanel][message][appendLocalUserMessage][START]"); messages = [ ...messages, { message_id: `local-${Date.now()}`, - role: 'user', + role: "user", text, created_at: new Date().toISOString(), }, @@ -202,11 +240,13 @@ * @POST: assistant message appended with state/task/actions metadata. */ function appendAssistantResponse(response) { + // prettier-ignore + console.log("[AssistantChatPanel][message][appendAssistantResponse][START]"); messages = [ ...messages, { message_id: response.response_id, - role: 'assistant', + role: "assistant", text: response.text, state: response.state, task_id: response.task_id || null, @@ -220,12 +260,12 @@ function buildConversationTitle(conversation) { if (conversation?.title?.trim()) return conversation.title.trim(); - if (!conversation?.conversation_id) return 'Conversation'; + if (!conversation?.conversation_id) return "Conversation"; return `Conversation ${conversation.conversation_id.slice(0, 8)}`; } function setConversationFilter(filter) { - if (filter !== 'active' && filter !== 'archived') return; + if (filter !== "active" && filter !== "archived") return; if (conversationFilter === filter) return; conversationFilter = filter; conversations = []; @@ -235,9 +275,9 @@ } function formatConversationTime(iso) { - if (!iso) return ''; + if (!iso) return ""; const dt = new Date(iso); - if (Number.isNaN(dt.getTime())) return ''; + if (Number.isNaN(dt.getTime())) return ""; return dt.toLocaleString(); } @@ -249,11 +289,12 @@ * @SIDE_EFFECT: Triggers backend command execution pipeline. */ async function handleSend() { + console.log("[AssistantChatPanel][message][handleSend][START]"); const text = input.trim(); if (!text || loading) return; appendLocalUserMessage(text); - input = ''; + input = ""; loading = true; try { @@ -271,8 +312,8 @@ } catch (err) { appendAssistantResponse({ response_id: `error-${Date.now()}`, - text: err.message || 'Assistant request failed', - state: 'failed', + text: err.message || "Assistant request failed", + state: "failed", created_at: new Date().toISOString(), actions: [], }); @@ -289,6 +330,8 @@ * @POST: conversationId updated and history reloaded. */ async function selectConversation(conversation) { + // prettier-ignore + console.log("[AssistantChatPanel][conversation][selectConversation][START]"); if (!conversation?.conversation_id) return; if (conversation.conversation_id === conversationId) return; // Invalidate any in-flight history request to avoid stale conversation overwrite. @@ -308,8 +351,10 @@ * @POST: Messages reset and new conversation id bound. */ function startNewConversation() { + // prettier-ignore + console.log("[AssistantChatPanel][conversation][startNewConversation][START]"); const newId = - typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function' + typeof crypto !== "undefined" && typeof crypto.randomUUID === "function" ? crypto.randomUUID() : `conv-${Date.now()}`; setAssistantConversationId(newId); @@ -328,32 +373,37 @@ * @SIDE_EFFECT: May navigate routes or call confirm/cancel API endpoints. */ async function handleAction(action, message) { + console.log("[AssistantChatPanel][action][handleAction][START]"); try { - if (action.type === 'open_task' && action.target) { + if (action.type === "open_task" && action.target) { openDrawerForTask(action.target); return; } - if (action.type === 'open_reports') { - goto('/reports'); + if (action.type === "open_reports") { + goto("/reports"); return; } - if (action.type === 'confirm' && message.confirmation_id) { - const response = await confirmAssistantOperation(message.confirmation_id); + if (action.type === "confirm" && message.confirmation_id) { + const response = await confirmAssistantOperation( + message.confirmation_id, + ); appendAssistantResponse(response); return; } - if (action.type === 'cancel' && message.confirmation_id) { - const response = await cancelAssistantOperation(message.confirmation_id); + if (action.type === "cancel" && message.confirmation_id) { + const response = await cancelAssistantOperation( + message.confirmation_id, + ); appendAssistantResponse(response); } } catch (err) { appendAssistantResponse({ response_id: `action-error-${Date.now()}`, - text: err.message || 'Action failed', - state: 'failed', + text: err.message || "Action failed", + state: "failed", created_at: new Date().toISOString(), actions: [], }); @@ -368,7 +418,8 @@ * @POST: handleSend is invoked when Enter is pressed without shift modifier. */ function handleKeydown(event) { - if (event.key === 'Enter' && !event.shiftKey) { + console.log("[AssistantChatPanel][input][handleKeydown][START]"); + if (event.key === "Enter" && !event.shiftKey) { event.preventDefault(); handleSend(); } @@ -382,12 +433,17 @@ * @POST: Tailwind class string returned for badge rendering. */ function stateClass(state) { - if (state === 'started') return 'bg-sky-100 text-sky-700 border-sky-200'; - if (state === 'success') return 'bg-emerald-100 text-emerald-700 border-emerald-200'; - if (state === 'needs_confirmation') return 'bg-amber-100 text-amber-700 border-amber-200'; - if (state === 'denied' || state === 'failed') return 'bg-rose-100 text-rose-700 border-rose-200'; - if (state === 'needs_clarification') return 'bg-violet-100 text-violet-700 border-violet-200'; - return 'bg-slate-100 text-slate-700 border-slate-200'; + console.log("[AssistantChatPanel][ui][stateClass][START]"); + if (state === "started") return "bg-sky-100 text-sky-700 border-sky-200"; + if (state === "success") + return "bg-emerald-100 text-emerald-700 border-emerald-200"; + if (state === "needs_confirmation") + return "bg-amber-100 text-amber-700 border-amber-200"; + if (state === "denied" || state === "failed") + return "bg-rose-100 text-rose-700 border-rose-200"; + if (state === "needs_clarification") + return "bg-violet-100 text-violet-700 border-violet-200"; + return "bg-slate-100 text-slate-700 border-slate-200"; } // [/DEF:stateClass:Function] @@ -398,8 +454,9 @@ * @POST: loadOlderMessages called when boundary and more pages available. */ function handleHistoryScroll(event) { + console.log("[AssistantChatPanel][scroll][handleHistoryScroll][START]"); const el = event.currentTarget; - if (!el || typeof el.scrollTop !== 'number') return; + if (!el || typeof el.scrollTop !== "number") return; if (el.scrollTop <= 16) { loadOlderMessages(); } @@ -412,18 +469,28 @@ {#if isOpen} - + - -{/if} +
- + +
+ {#if activeTaskId} + + {:else if loadingTasks} +
+
+

{$t.tasks?.loading || "Loading tasks..."}

+
+ {:else if recentTasks.length > 0} +
+

+ {$t.tasks?.recent || "Recent Tasks"} +

+ {#each recentTasks as task} + + {/each} +
+ {:else} +
+ +

{$t.tasks?.select_task || "No recent tasks"}

+
+ {/if} +
+ + +
+
+

+ {$t.tasks?.footer_text || "Task continues running in background"} +

+
+ + +{/if} +``` diff --git a/frontend/src/lib/components/reports/reportTypeProfiles.js b/frontend/src/lib/components/reports/reportTypeProfiles.js index 8a54da4..3ddba98 100644 --- a/frontend/src/lib/components/reports/reportTypeProfiles.js +++ b/frontend/src/lib/components/reports/reportTypeProfiles.js @@ -52,6 +52,8 @@ export const REPORT_TYPE_PROFILES = { // @POST: Returns one profile object. export function getReportTypeProfile(taskType) { const key = typeof taskType === 'string' ? taskType : 'unknown'; + console.log("[reports][ui][getReportTypeProfile][STATE:START]"); + console.log("[reports][ui][getReportTypeProfile] Resolved type '" + taskType + "' to profile '" + key + "'"); return REPORT_TYPE_PROFILES[key] || REPORT_TYPE_PROFILES.unknown; } // [/DEF:getReportTypeProfile:Function] diff --git a/gen_map_module.json b/gen_map_module.json new file mode 100644 index 0000000..b837f9b --- /dev/null +++ b/gen_map_module.json @@ -0,0 +1,123 @@ +{ + "name": "generate_semantic_map", + "type": "Module", + "tier": "STANDARD", + "start_line": 1, + "end_line": 53, + "tags": { + "PURPOSE": "Scans the codebase to generate a Semantic Map, Module Map, and Compliance Report based on the System Standard.", + "PRE": "Valid directory containing code to scan.", + "POST": "Files map.json, .ai/PROJECT_MAP.md, .ai/MODULE_MAP.md, and compliance reports generated.", + "TIER": "STANDARD", + "SEMANTICS": "semantic_analysis, parser, map_generator, compliance_checker, tier_validation, svelte_props, data_flow, module_map", + "LAYER": "DevOps/Tooling", + "INVARIANT": "All DEF anchors must have matching closing anchors; TIER determines validation strictness." + }, + "relations": [ + { + "type": "READS", + "target": "FileSystem" + }, + { + "type": "PRODUCES", + "target": "semantics/semantic_map.json" + }, + { + "type": "PRODUCES", + "target": ".ai/PROJECT_MAP.md" + }, + { + "type": "PRODUCES", + "target": ".ai/MODULE_MAP.md" + }, + { + "type": "PRODUCES", + "target": "semantics/reports/semantic_report_*.md" + } + ], + "children": [ + { + "name": "__init__", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 27, + "end_line": 34, + "tags": { + "TIER": "TRIVIAL", + "PURPOSE": "Mock init for self-containment.", + "PRE": "name is a string.", + "POST": "Instance initialized." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "__enter__", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 36, + "end_line": 43, + "tags": { + "TIER": "TRIVIAL", + "PURPOSE": "Mock enter.", + "PRE": "Instance initialized.", + "POST": "Returns self." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "__exit__", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 45, + "end_line": 52, + "tags": { + "TIER": "TRIVIAL", + "PURPOSE": "Mock exit.", + "PRE": "Context entered.", + "POST": "Context exited." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "to_dict", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 138, + "end_line": 138, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } +} diff --git a/generate_semantic_map.py b/generate_semantic_map.py index 3b00502..fe87665 100644 --- a/generate_semantic_map.py +++ b/generate_semantic_map.py @@ -1,9 +1,10 @@ # [DEF:generate_semantic_map:Module] -# -# @TIER: CRITICAL +# @PURPOSE: Scans the codebase to generate a Semantic Map, Module Map, and Compliance Report based on the System Standard. +# @PRE: Valid directory containing code to scan. +# @POST: Files map.json, .ai/PROJECT_MAP.md, .ai/MODULE_MAP.md, and compliance reports generated. +# @TIER: STANDARD # @SEMANTICS: semantic_analysis, parser, map_generator, compliance_checker, tier_validation, svelte_props, data_flow, module_map -# @PURPOSE: Scans the codebase to generate a Semantic Map, Module Map, and Compliance Report based on the System Standard. -# @LAYER: DevOps/Tooling +# @LAYER: DevOps/Tooling # @INVARIANT: All DEF anchors must have matching closing anchors; TIER determines validation strictness. # @RELATION: READS -> FileSystem # @RELATION: PRODUCES -> semantics/semantic_map.json @@ -262,7 +263,7 @@ class SemanticEntity: # Check if it's a special case (logger.py or mock functions) if "logger.py" not in self.file_path and "__" not in self.name: severity = Severity.ERROR if tier == Tier.CRITICAL else Severity.WARNING - log_type = "belief_scope" if is_python else "console.log with [ID][STATE]" + log_type = "belief_scope / molecular methods" if is_python else "console.log with [ID][STATE]" self.compliance_issues.append(ComplianceIssue( f"Missing Belief State Logging: Function should use {log_type} (required for {tier.value} tier)", severity, @@ -296,13 +297,17 @@ class SemanticEntity: tier = self.get_tier() score = 1.0 + # Dynamic penalties based on Tier + error_penalty = 0.5 if tier == Tier.CRITICAL else 0.3 + warning_penalty = 0.15 + # Count issues by severity errors = len([i for i in self.compliance_issues if i.severity == Severity.ERROR]) warnings = len([i for i in self.compliance_issues if i.severity == Severity.WARNING]) # Penalties - score -= errors * 0.3 - score -= warnings * 0.1 + score -= errors * error_penalty + score -= warnings * warning_penalty # Check mandatory tags required = TIER_MANDATORY_TAGS.get(tier, {}).get(self.type, []) @@ -314,7 +319,8 @@ class SemanticEntity: found_count += 1 break if found_count < len(required): - score -= 0.2 * (1 - (found_count / len(required))) + missing_ratio = 1 - (found_count / len(required)) + score -= 0.3 * missing_ratio return max(0.0, score) # [/DEF:get_score:Function] @@ -336,7 +342,8 @@ def get_patterns(lang: str) -> Dict[str, Pattern]: "tag": re.compile(r"#\s*@(?P[A-Z_]+):\s*(?P.*)"), "relation": re.compile(r"#\s*@RELATION:\s*(?P\w+)\s*->\s*(?P.*)"), "func_def": re.compile(r"^\s*(async\s+)?def\s+(?P\w+)"), - "belief_scope": re.compile(r"with\s+(\w+\.)?belief_scope\("), + "belief_scope": re.compile(r"with\s+(\w+\.)?belief_scope\(|@believed\("), + "molecular_log": re.compile(r"logger\.(explore|reason|reflect)\("), } else: return { @@ -348,7 +355,7 @@ def get_patterns(lang: str) -> Dict[str, Pattern]: "jsdoc_tag": re.compile(r"\*\s*@(?P[a-zA-Z]+)\s+(?P.*)"), "relation": re.compile(r"//\s*@RELATION:\s*(?P\w+)\s*->\s*(?P.*)"), "func_def": re.compile(r"^\s*(export\s+)?(async\s+)?function\s+(?P\w+)"), - "console_log": re.compile(r"console\.log\s*\(\s*['\"]\[[\w_]+\]\[[\w_]+\]"), + "console_log": re.compile(r"console\.log\s*\(\s*['\"`]\[[\w_]+\]\[[A-Za-z0-9_:]+\]"), # Svelte-specific patterns "export_let": re.compile(r"export\s+let\s+(?P\w+)(?:\s*:\s*(?P[\w\[\]|<>]+))?(?:\s*=\s*(?P[^;]+))?"), "create_event_dispatcher": re.compile(r"createEventDispatcher\s*<\s*\{\s*(?P[^}]+)\s*\}\s*\>"), @@ -609,8 +616,10 @@ def parse_file(full_path: str, rel_path: str, lang: str) -> Tuple[List[SemanticE current.tags[tag_name] = tag_value # Check for belief scope in implementation - if lang == "python" and "belief_scope" in patterns: - if patterns["belief_scope"].search(line): + if lang == "python": + if "belief_scope" in patterns and patterns["belief_scope"].search(line): + current.has_belief_scope = True + elif "molecular_log" in patterns and patterns["molecular_log"].search(line): current.has_belief_scope = True # Check for console.log belief state in Svelte @@ -803,26 +812,39 @@ class SemanticMapGenerator: with belief_scope("_process_file_results"): total_score = 0 count = 0 + module_max_tier = Tier.TRIVIAL # [DEF:validate_recursive:Function] # @TIER: STANDARD - # @PURPOSE: Recursively validates a list of entities. - # @PRE: ent_list is a list of SemanticEntity objects. - # @POST: All entities and their children are validated. + # @PURPOSE: Calculate score and determine module's max tier for weighted global score + # @PRE: Entities exist + # @POST: Entities are validated def validate_recursive(ent_list): with belief_scope("validate_recursive"): - nonlocal total_score, count + nonlocal total_score, count, module_max_tier for e in ent_list: e.validate() total_score += e.get_score() count += 1 + + # Determine dominant tier for file + e_tier = e.get_tier() + if e_tier == Tier.CRITICAL: + module_max_tier = Tier.CRITICAL + elif e_tier == Tier.STANDARD and module_max_tier != Tier.CRITICAL: + module_max_tier = Tier.STANDARD + validate_recursive(e.children) # [/DEF:validate_recursive:Function] validate_recursive(entities) self.entities.extend(entities) - self.file_scores[rel_path] = (total_score / count) if count > 0 else 0.0 + + # Store both the score and the dominating tier for weighted global calculation + file_score = (total_score / count) if count > 0 else 0.0 + self.file_scores[rel_path] = {"score": file_score, "tier": module_max_tier} + # [/DEF:_process_file_results:Function] # [DEF:_generate_artifacts:Function] @@ -860,7 +882,19 @@ class SemanticMapGenerator: os.makedirs(REPORTS_DIR, exist_ok=True) total_files = len(self.file_scores) - avg_score = sum(self.file_scores.values()) / total_files if total_files > 0 else 0 + + total_weighted_score = 0 + total_weight = 0 + + for file_path, data in self.file_scores.items(): + tier = data["tier"] + score = data["score"] + weight = 3 if tier == Tier.CRITICAL else (2 if tier == Tier.STANDARD else 1) + + total_weighted_score += score * weight + total_weight += weight + + avg_score = total_weighted_score / total_weight if total_weight > 0 else 0 # Count issues by severity error_count = len([i for i in self.global_issues if i.severity == Severity.ERROR]) @@ -884,12 +918,19 @@ class SemanticMapGenerator: f.write("| File | Score | Tier | Issues |\n") f.write("|------|-------|------|--------|\n") - sorted_files = sorted(self.file_scores.items(), key=lambda x: x[1]) + # Sort logically: Critical first, then by score + sorted_files = sorted(self.file_scores.items(), key=lambda x: ( + 0 if x[1]["tier"] == Tier.CRITICAL else (1 if x[1]["tier"] == Tier.STANDARD else 2), + x[1]["score"] + )) - for file_path, score in sorted_files: + for file_path, data in sorted_files: + score = data["score"] issues = [] tier = "N/A" self._collect_issues(self.entities, file_path, issues, tier) + # Override Display Tier with the dominant tier we computed + tier = data["tier"].value status_icon = "🟢" if score == 1.0 else "🟡" if score > 0.5 else "🔴" issue_text = "
".join([f"{'🔴' if i.severity == Severity.ERROR else '🟡'} {i.message}" for i in issues[:3]]) @@ -1024,12 +1065,13 @@ class SemanticMapGenerator: # @PRE: file_path is a valid relative path. # @POST: Returns a module path string. def _get_module_path(file_path: str) -> str: - # Convert file path to module-like path - parts = file_path.replace(os.sep, '/').split('/') - # Remove filename - if len(parts) > 1: - return '/'.join(parts[:-1]) - return 'root' + with belief_scope("_get_module_path"): + # Convert file path to module-like path + parts = file_path.replace(os.sep, '/').split('/') + # Remove filename + if len(parts) > 1: + return '/'.join(parts[:-1]) + return 'root' # [/DEF:_get_module_path:Function] # [DEF:_collect_all_entities:Function] @@ -1038,9 +1080,10 @@ class SemanticMapGenerator: # @PRE: entity list is valid. # @POST: Returns flat list of all entities with their hierarchy. def _collect_all_entities(entities: List[SemanticEntity], result: List[Tuple[str, SemanticEntity]]): - for e in entities: - result.append((_get_module_path(e.file_path), e)) - _collect_all_entities(e.children, result) + with belief_scope("_collect_all_entities"): + for e in entities: + result.append((_get_module_path(e.file_path), e)) + _collect_all_entities(e.children, result) # [/DEF:_collect_all_entities:Function] # Collect all entities diff --git a/pers_module.json b/pers_module.json new file mode 100644 index 0000000..e69de29 diff --git a/semantics/semantic_map.json b/semantics/semantic_map.json index 29681dd..3d81f65 100644 --- a/semantics/semantic_map.json +++ b/semantics/semantic_map.json @@ -1,17 +1,305 @@ { "project_root": ".", - "generated_at": "2026-02-24T12:45:07.793423", + "generated_at": "2026-02-24T21:04:43.210838", "modules": [ { - "name": "generate_semantic_map", + "name": "backend.src.services.reports.report_service", "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 1173, + "end_line": 227, "tags": { "TIER": "CRITICAL", - "SEMANTICS": "semantic_analysis, parser, map_generator, compliance_checker, tier_validation, svelte_props, data_flow, module_map", + "SEMANTICS": "reports, service, aggregation, filtering, pagination, detail", + "PURPOSE": "Aggregate, normalize, filter, and paginate task reports for unified list/detail API use cases.", + "LAYER": "Domain", + "INVARIANT": "List responses are deterministic and include applied filter echo metadata." + }, + "relations": [ + { + "type": "DEPENDS_ON", + "target": "backend.src.core.task_manager.manager.TaskManager" + }, + { + "type": "DEPENDS_ON", + "target": "backend.src.models.report" + }, + { + "type": "DEPENDS_ON", + "target": "backend.src.services.reports.normalizer" + } + ], + "children": [ + { + "name": "ReportsService", + "type": "Class", + "tier": "CRITICAL", + "start_line": 23, + "end_line": 203, + "tags": { + "PURPOSE": "Service layer for list/detail report retrieval and normalization.", + "TIER": "CRITICAL", + "PRE": "TaskManager dependency is initialized.", + "POST": "Provides deterministic list/detail report responses.", + "INVARIANT": "Service methods are read-only over task history source." + }, + "relations": [], + "children": [ + { + "name": "__init__", + "type": "Function", + "tier": "CRITICAL", + "start_line": 30, + "end_line": 40, + "tags": { + "TIER": "CRITICAL", + "PURPOSE": "Initialize service with TaskManager dependency.", + "PRE": "task_manager is a live TaskManager instance.", + "POST": "self.task_manager is assigned and ready for read operations.", + "INVARIANT": "Constructor performs no task mutations.", + "PARAM": "task_manager (TaskManager) - Task manager providing source task history." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_load_normalized_reports", + "type": "Function", + "tier": "STANDARD", + "start_line": 42, + "end_line": 53, + "tags": { + "PURPOSE": "Build normalized reports from all available tasks.", + "PRE": "Task manager returns iterable task history records.", + "POST": "Returns normalized report list preserving source cardinality.", + "INVARIANT": "Every returned item is a TaskReport.", + "RETURN": "List[TaskReport] - Reports sorted later by list logic." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_to_utc_datetime", + "type": "Function", + "tier": "STANDARD", + "start_line": 55, + "end_line": 69, + "tags": { + "PURPOSE": "Normalize naive/aware datetime values to UTC-aware datetime for safe comparisons.", + "PRE": "value is either datetime or None.", + "POST": "Returns UTC-aware datetime or None.", + "INVARIANT": "Naive datetimes are interpreted as UTC to preserve deterministic ordering/filtering.", + "PARAM": "value (Optional[datetime]) - Source datetime value.", + "RETURN": "Optional[datetime] - UTC-aware datetime or None." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_datetime_sort_key", + "type": "Function", + "tier": "STANDARD", + "start_line": 71, + "end_line": 84, + "tags": { + "PURPOSE": "Produce stable numeric sort key for report timestamps.", + "PRE": "report contains updated_at datetime.", + "POST": "Returns float timestamp suitable for deterministic sorting.", + "INVARIANT": "Mixed naive/aware datetimes never raise TypeError.", + "PARAM": "report (TaskReport) - Report item.", + "RETURN": "float - UTC timestamp key." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_matches_query", + "type": "Function", + "tier": "STANDARD", + "start_line": 86, + "end_line": 114, + "tags": { + "PURPOSE": "Apply query filtering to a report.", + "PRE": "report and query are normalized schema instances.", + "POST": "Returns True iff report satisfies all active query filters.", + "INVARIANT": "Filter evaluation is side-effect free.", + "PARAM": "query (ReportQuery) - Applied query.", + "RETURN": "bool - True if report matches all filters." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_sort_reports", + "type": "Function", + "tier": "STANDARD", + "start_line": 116, + "end_line": 136, + "tags": { + "PURPOSE": "Sort reports deterministically according to query settings.", + "PRE": "reports contains only TaskReport items.", + "POST": "Returns reports ordered by selected sort field and order.", + "INVARIANT": "Sorting criteria are deterministic for equal input.", + "PARAM": "query (ReportQuery) - Sort config.", + "RETURN": "List[TaskReport] - Sorted reports." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "list_reports", + "type": "Function", + "tier": "STANDARD", + "start_line": 138, + "end_line": 164, + "tags": { + "PURPOSE": "Return filtered, sorted, paginated report collection.", + "PRE": "query has passed schema validation.", + "POST": "Returns {items,total,page,page_size,has_next,applied_filters}.", + "PARAM": "query (ReportQuery) - List filters and pagination.", + "RETURN": "ReportCollection - Paginated unified reports payload." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "get_report_detail", + "type": "Function", + "tier": "STANDARD", + "start_line": 166, + "end_line": 202, + "tags": { + "PURPOSE": "Return one normalized report with timeline/diagnostics/next actions.", + "PRE": "report_id exists in normalized report set.", + "POST": "Returns normalized detail envelope with diagnostics and next actions where applicable.", + "PARAM": "report_id (str) - Stable report identifier.", + "RETURN": "Optional[ReportDetailView] - Detailed report or None if not found." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "print_entity", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 214, + "end_line": 214, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "test_analyze", + "type": "Module", + "tier": "TRIVIAL", + "start_line": 1, + "end_line": 20, + "tags": { + "PURPOSE": "Auto-generated module for test_analyze.py", + "TIER": "TRIVIAL", + "LAYER": "Unknown" + }, + "relations": [], + "children": [ + { + "name": "print_issues", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 8, + "end_line": 8, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "generate_semantic_map", + "type": "Module", + "tier": "STANDARD", + "start_line": 1, + "end_line": 1216, + "tags": { "PURPOSE": "Scans the codebase to generate a Semantic Map, Module Map, and Compliance Report based on the System Standard.", + "PRE": "Valid directory containing code to scan.", + "POST": "Files map.json, .ai/PROJECT_MAP.md, .ai/MODULE_MAP.md, and compliance reports generated.", + "TIER": "STANDARD", + "SEMANTICS": "semantic_analysis, parser, map_generator, compliance_checker, tier_validation, svelte_props, data_flow, module_map", "LAYER": "DevOps/Tooling", "INVARIANT": "All DEF anchors must have matching closing anchors; TIER determines validation strictness." }, @@ -42,8 +330,8 @@ "name": "__init__", "type": "Function", "tier": "TRIVIAL", - "start_line": 26, - "end_line": 33, + "start_line": 27, + "end_line": 34, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Mock init for self-containment.", @@ -62,8 +350,8 @@ "name": "__enter__", "type": "Function", "tier": "TRIVIAL", - "start_line": 35, - "end_line": 42, + "start_line": 36, + "end_line": 43, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Mock enter.", @@ -82,8 +370,8 @@ "name": "__exit__", "type": "Function", "tier": "TRIVIAL", - "start_line": 44, - "end_line": 51, + "start_line": 45, + "end_line": 52, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Mock exit.", @@ -102,8 +390,8 @@ "name": "Tier", "type": "Class", "tier": "TRIVIAL", - "start_line": 58, - "end_line": 64, + "start_line": 59, + "end_line": 65, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Enumeration of semantic tiers defining validation strictness." @@ -120,8 +408,8 @@ "name": "Severity", "type": "Class", "tier": "TRIVIAL", - "start_line": 68, - "end_line": 74, + "start_line": 69, + "end_line": 75, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Severity levels for compliance issues." @@ -138,8 +426,8 @@ "name": "ComplianceIssue", "type": "Class", "tier": "TRIVIAL", - "start_line": 127, - "end_line": 142, + "start_line": 128, + "end_line": 143, "tags": { "TIER": "TRIVIAL", "PURPOSE": "Represents a single compliance issue with severity." @@ -156,8 +444,8 @@ "name": "SemanticEntity", "type": "Class", "tier": "CRITICAL", - "start_line": 145, - "end_line": 321, + "start_line": 146, + "end_line": 327, "tags": { "TIER": "CRITICAL", "PURPOSE": "Represents a code entity (Module, Function, Component) found during parsing.", @@ -169,8 +457,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 150, - "end_line": 173, + "start_line": 151, + "end_line": 174, "tags": { "TIER": "STANDARD", "PURPOSE": "Initializes a new SemanticEntity instance.", @@ -189,8 +477,8 @@ "name": "get_tier", "type": "Function", "tier": "STANDARD", - "start_line": 175, - "end_line": 187, + "start_line": 176, + "end_line": 188, "tags": { "TIER": "STANDARD", "PURPOSE": "Returns the tier of the entity, defaulting to STANDARD.", @@ -209,8 +497,8 @@ "name": "to_dict", "type": "Function", "tier": "STANDARD", - "start_line": 189, - "end_line": 218, + "start_line": 190, + "end_line": 219, "tags": { "TIER": "STANDARD", "PURPOSE": "Serializes the entity to a dictionary for JSON output.", @@ -229,8 +517,8 @@ "name": "validate", "type": "Function", "tier": "CRITICAL", - "start_line": 220, - "end_line": 284, + "start_line": 221, + "end_line": 285, "tags": { "TIER": "CRITICAL", "PURPOSE": "Checks for semantic compliance based on TIER requirements.", @@ -250,8 +538,8 @@ "name": "get_score", "type": "Function", "tier": "STANDARD", - "start_line": 286, - "end_line": 320, + "start_line": 287, + "end_line": 326, "tags": { "TIER": "STANDARD", "PURPOSE": "Calculates a compliance score (0.0 to 1.0) based on tier requirements.", @@ -277,8 +565,8 @@ "name": "get_patterns", "type": "Function", "tier": "STANDARD", - "start_line": 324, - "end_line": 359, + "start_line": 330, + "end_line": 366, "tags": { "TIER": "STANDARD", "PURPOSE": "Returns regex patterns for a specific language.", @@ -298,8 +586,8 @@ "name": "extract_svelte_props", "type": "Function", "tier": "STANDARD", - "start_line": 362, - "end_line": 388, + "start_line": 369, + "end_line": 395, "tags": { "TIER": "STANDARD", "PURPOSE": "Extracts props from Svelte component script section.", @@ -318,8 +606,8 @@ "name": "extract_svelte_events", "type": "Function", "tier": "STANDARD", - "start_line": 391, - "end_line": 425, + "start_line": 398, + "end_line": 432, "tags": { "TIER": "STANDARD", "PURPOSE": "Extracts dispatched events from Svelte component.", @@ -338,8 +626,8 @@ "name": "extract_data_flow", "type": "Function", "tier": "STANDARD", - "start_line": 428, - "end_line": 478, + "start_line": 435, + "end_line": 485, "tags": { "TIER": "STANDARD", "PURPOSE": "Extracts store subscriptions and data flow from Svelte component.", @@ -358,8 +646,8 @@ "name": "parse_file", "type": "Function", "tier": "CRITICAL", - "start_line": 481, - "end_line": 668, + "start_line": 488, + "end_line": 677, "tags": { "TIER": "CRITICAL", "PURPOSE": "Parses a single file to extract semantic entities with tier awareness and enhanced Svelte analysis.", @@ -380,8 +668,8 @@ "name": "SemanticMapGenerator", "type": "Class", "tier": "CRITICAL", - "start_line": 671, - "end_line": 1166, + "start_line": 680, + "end_line": 1209, "tags": { "TIER": "CRITICAL", "PURPOSE": "Orchestrates the mapping process with tier-based validation.", @@ -393,8 +681,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 676, - "end_line": 688, + "start_line": 685, + "end_line": 697, "tags": { "TIER": "STANDARD", "PURPOSE": "Initializes the generator with a root directory.", @@ -413,8 +701,8 @@ "name": "_load_gitignore", "type": "Function", "tier": "STANDARD", - "start_line": 690, - "end_line": 706, + "start_line": 699, + "end_line": 715, "tags": { "TIER": "STANDARD", "PURPOSE": "Loads patterns from .gitignore file.", @@ -433,8 +721,8 @@ "name": "_is_ignored", "type": "Function", "tier": "STANDARD", - "start_line": 708, - "end_line": 749, + "start_line": 717, + "end_line": 758, "tags": { "TIER": "STANDARD", "PURPOSE": "Checks if a path should be ignored based on .gitignore or hardcoded defaults.", @@ -453,8 +741,8 @@ "name": "run", "type": "Function", "tier": "CRITICAL", - "start_line": 751, - "end_line": 764, + "start_line": 760, + "end_line": 773, "tags": { "TIER": "CRITICAL", "PURPOSE": "Main execution flow.", @@ -482,8 +770,8 @@ "name": "_walk_and_parse", "type": "Function", "tier": "CRITICAL", - "start_line": 766, - "end_line": 795, + "start_line": 775, + "end_line": 804, "tags": { "TIER": "CRITICAL", "PURPOSE": "Recursively walks directories and triggers parsing.", @@ -502,8 +790,8 @@ "name": "_process_file_results", "type": "Function", "tier": "STANDARD", - "start_line": 797, - "end_line": 826, + "start_line": 806, + "end_line": 848, "tags": { "TIER": "STANDARD", "PURPOSE": "Validates entities and calculates file scores with tier awareness.", @@ -516,13 +804,13 @@ "name": "validate_recursive", "type": "Function", "tier": "STANDARD", - "start_line": 807, - "end_line": 820, + "start_line": 817, + "end_line": 838, "tags": { "TIER": "STANDARD", - "PURPOSE": "Recursively validates a list of entities.", - "PRE": "ent_list is a list of SemanticEntity objects.", - "POST": "All entities and their children are validated." + "PURPOSE": "Calculate score and determine module's max tier for weighted global score", + "PRE": "Entities exist", + "POST": "Entities are validated" }, "relations": [], "children": [], @@ -543,8 +831,8 @@ "name": "_generate_artifacts", "type": "Function", "tier": "CRITICAL", - "start_line": 828, - "end_line": 849, + "start_line": 850, + "end_line": 871, "tags": { "TIER": "CRITICAL", "PURPOSE": "Writes output files with tier-based compliance data.", @@ -563,8 +851,8 @@ "name": "_generate_report", "type": "Function", "tier": "CRITICAL", - "start_line": 851, - "end_line": 904, + "start_line": 873, + "end_line": 945, "tags": { "TIER": "CRITICAL", "PURPOSE": "Generates the Markdown compliance report with severity levels.", @@ -583,8 +871,8 @@ "name": "_collect_issues", "type": "Function", "tier": "STANDARD", - "start_line": 906, - "end_line": 918, + "start_line": 947, + "end_line": 959, "tags": { "TIER": "STANDARD", "PURPOSE": "Helper to collect issues for a specific file from the entity tree.", @@ -603,8 +891,8 @@ "name": "_generate_compressed_map", "type": "Function", "tier": "CRITICAL", - "start_line": 920, - "end_line": 937, + "start_line": 961, + "end_line": 978, "tags": { "TIER": "CRITICAL", "PURPOSE": "Generates the token-optimized project map with enhanced Svelte details.", @@ -623,8 +911,8 @@ "name": "_write_entity_md", "type": "Function", "tier": "CRITICAL", - "start_line": 939, - "end_line": 1007, + "start_line": 980, + "end_line": 1048, "tags": { "TIER": "CRITICAL", "PURPOSE": "Recursive helper to write entity tree to Markdown with tier badges and enhanced details.", @@ -643,8 +931,8 @@ "name": "_generate_module_map", "type": "Function", "tier": "CRITICAL", - "start_line": 1009, - "end_line": 1164, + "start_line": 1050, + "end_line": 1207, "tags": { "TIER": "CRITICAL", "PURPOSE": "Generates a module-centric map grouping entities by directory structure.", @@ -657,8 +945,8 @@ "name": "_get_module_path", "type": "Function", "tier": "STANDARD", - "start_line": 1021, - "end_line": 1033, + "start_line": 1062, + "end_line": 1075, "tags": { "TIER": "STANDARD", "PURPOSE": "Extracts the module path from a file path.", @@ -669,37 +957,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1021 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1021 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1021 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1021 - } - ], - "score": 0.6 + "issues": [], + "score": 1.0 } }, { "name": "_collect_all_entities", "type": "Function", "tier": "STANDARD", - "start_line": 1035, - "end_line": 1044, + "start_line": 1077, + "end_line": 1087, "tags": { "TIER": "STANDARD", "PURPOSE": "Flattens entity tree for easier grouping.", @@ -710,29 +977,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1035 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1035 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1035 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1035 - } - ], - "score": 0.6 + "issues": [], + "score": 1.0 } } ], @@ -753,8 +999,8 @@ "name": "to_dict", "type": "Function", "tier": "TRIVIAL", - "start_line": 136, - "end_line": 136, + "start_line": 137, + "end_line": 137, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -962,7 +1208,7 @@ "line_number": 40 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -992,7 +1238,7 @@ "line_number": 56 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -1060,7 +1306,7 @@ "line_number": 13 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -1091,7 +1337,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -1104,7 +1350,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -1150,7 +1396,7 @@ "line_number": 12 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -1198,7 +1444,7 @@ "line_number": 29 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -1230,7 +1476,7 @@ "line_number": 45 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -1262,7 +1508,7 @@ "line_number": 75 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -1292,7 +1538,7 @@ "line_number": 108 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -1488,24 +1734,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 84 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 84 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 84 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } } ], @@ -1523,7 +1753,7 @@ "line_number": 31 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -1621,7 +1851,7 @@ "line_number": 21 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2005,7 +2235,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -2051,7 +2281,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2082,7 +2312,7 @@ "line_number": 45 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2122,7 +2352,7 @@ "line_number": 71 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -2162,7 +2392,7 @@ "line_number": 94 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } } ], @@ -2203,7 +2433,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -2228,7 +2458,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -2305,7 +2535,7 @@ "line_number": 19 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -2371,7 +2601,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 83, + "end_line": 93, "tags": { "TIER": "CRITICAL", "SEMANTICS": "frontend, api_client, reports, wrapper", @@ -2391,7 +2621,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 11, - "end_line": 36, + "end_line": 37, "tags": { "PURPOSE": "Build query string for reports list endpoint from filter options.", "PRE": "options is an object with optional report query fields.", @@ -2401,27 +2631,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 11 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 11 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "normalizeApiError", "type": "Function", "tier": "STANDARD", - "start_line": 38, - "end_line": 54, + "start_line": 39, + "end_line": 56, "tags": { "PURPOSE": "Convert unknown API exceptions into deterministic UI-consumable error objects.", "PRE": "error may be Error/string/object.", @@ -2431,27 +2650,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 38 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 38 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "getReports", "type": "Function", "tier": "STANDARD", - "start_line": 56, - "end_line": 68, + "start_line": 58, + "end_line": 74, "tags": { "PURPOSE": "Fetch unified report list using existing request wrapper.", "PRE": "valid auth context for protected endpoint.", @@ -2461,27 +2669,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 56 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 56 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "getReportDetail", "type": "Function", "tier": "STANDARD", - "start_line": 70, - "end_line": 81, + "start_line": 76, + "end_line": 91, "tags": { "PURPOSE": "Fetch one report detail by report_id.", "PRE": "reportId is non-empty string; valid auth context.", @@ -2491,19 +2688,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 70 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 70 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -2560,7 +2746,7 @@ "line_number": 11 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2590,7 +2776,7 @@ "line_number": 20 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2620,7 +2806,7 @@ "line_number": 29 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2650,7 +2836,7 @@ "line_number": 38 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -2680,7 +2866,7 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -3023,7 +3209,7 @@ "line_number": 57 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -3038,7 +3224,7 @@ "type": "Component", "tier": "CRITICAL", "start_line": 1, - "end_line": 556, + "end_line": 702, "tags": { "TIER": "CRITICAL", "PURPOSE": "Slide-out assistant chat panel for natural language command execution and task tracking.", @@ -3057,8 +3243,8 @@ "name": "loadHistory", "type": "Function", "tier": "STANDARD", - "start_line": 67, - "end_line": 96, + "start_line": 68, + "end_line": 114, "tags": { "PURPOSE": "Load current conversation history when panel becomes visible.", "PRE": "Panel is open and history request is not already running.", @@ -3069,27 +3255,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 67 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 67 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "loadConversations", "type": "Function", "tier": "STANDARD", - "start_line": 98, - "end_line": 130, + "start_line": 116, + "end_line": 155, "tags": { "PURPOSE": "Load paginated conversation summaries for quick switching UI.", "PRE": "Panel is open and request not already running.", @@ -3099,27 +3274,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 98 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 98 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "loadOlderMessages", "type": "Function", "tier": "STANDARD", - "start_line": 132, - "end_line": 159, + "start_line": 157, + "end_line": 199, "tags": { "PURPOSE": "Lazy-load older messages for active conversation when user scrolls to top.", "PRE": "History has next page and active conversation is known.", @@ -3129,27 +3293,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 132 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 132 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "appendLocalUserMessage", "type": "Function", "tier": "STANDARD", - "start_line": 174, - "end_line": 191, + "start_line": 216, + "end_line": 234, "tags": { "PURPOSE": "Add optimistic local user message before backend response.", "PRE": "text is non-empty command text.", @@ -3159,27 +3312,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 174 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 174 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "appendAssistantResponse", "type": "Function", "tier": "STANDARD", - "start_line": 193, - "end_line": 214, + "start_line": 236, + "end_line": 259, "tags": { "PURPOSE": "Normalize and append assistant response payload to chat list.", "PRE": "response follows assistant message response contract.", @@ -3189,27 +3331,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 193 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 193 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "handleSend", "type": "Function", "tier": "STANDARD", - "start_line": 239, - "end_line": 278, + "start_line": 284, + "end_line": 324, "tags": { "PURPOSE": "Submit user command to assistant orchestration API.", "PRE": "input contains a non-empty command and current request is not loading.", @@ -3220,27 +3351,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 239 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 239 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "selectConversation", "type": "Function", "tier": "STANDARD", - "start_line": 280, - "end_line": 293, + "start_line": 326, + "end_line": 345, "tags": { "PURPOSE": "Switch active chat context to selected conversation item.", "PRE": "conversation carries valid conversation_id.", @@ -3250,27 +3370,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 280 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 280 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "startNewConversation", "type": "Function", "tier": "STANDARD", - "start_line": 295, - "end_line": 312, + "start_line": 347, + "end_line": 366, "tags": { "PURPOSE": "Create local empty chat context that will be persisted on first message.", "PRE": "Panel is open.", @@ -3280,27 +3389,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 295 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 295 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "handleAction", "type": "Function", "tier": "STANDARD", - "start_line": 314, - "end_line": 353, + "start_line": 368, + "end_line": 412, "tags": { "PURPOSE": "Execute assistant action button behavior (open task/reports, confirm, cancel).", "PRE": "action object is produced by assistant response contract.", @@ -3311,27 +3409,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 314 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 314 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "handleKeydown", "type": "Function", "tier": "STANDARD", - "start_line": 355, - "end_line": 367, + "start_line": 414, + "end_line": 427, "tags": { "PURPOSE": "Submit command by Enter while preserving multiline input with Shift+Enter.", "PRE": "Keyboard event received from chat input.", @@ -3341,27 +3428,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 355 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 355 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "stateClass", "type": "Function", "tier": "STANDARD", - "start_line": 369, - "end_line": 383, + "start_line": 429, + "end_line": 448, "tags": { "PURPOSE": "Map assistant state to visual badge style class.", "PRE": "state is a nullable assistant state string.", @@ -3371,27 +3447,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 369 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 369 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "handleHistoryScroll", "type": "Function", "tier": "STANDARD", - "start_line": 385, - "end_line": 398, + "start_line": 450, + "end_line": 464, "tags": { "PURPOSE": "Trigger lazy history fetch when user scroll reaches top boundary.", "PRE": "Scroll event emitted by history viewport container.", @@ -3401,19 +3466,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 385 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 385 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -3456,52 +3510,57 @@ { "store": "assistantChatStore", "type": "READS_FROM", - "line": 64 + "line": 65 }, { "store": "assistantChatStore", "type": "READS_FROM", - "line": 65 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 412 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 417 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 478 + "line": 66 }, { "store": "t", "type": "READS_FROM", - "line": 481 - }, - { - "store": "t", - "type": "READS_FROM", - "line": 499 - }, - { - "store": "t", - "type": "READS_FROM", - "line": 513 + "line": 487 }, { "store": "t", "type": "WRITES_TO", - "line": 540 + "line": 493 }, { "store": "t", "type": "READS_FROM", - "line": 549 + "line": 585 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 591 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 619 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 638 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 670 + }, + { + "store": "t", + "type": "WRITES_TO", + "line": 685 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 694 } ] }, @@ -3510,7 +3569,7 @@ "type": "Module", "tier": "TRIVIAL", "start_line": 1, - "end_line": 556, + "end_line": 740, "tags": { "PURPOSE": "Auto-generated module for frontend/src/lib/components/assistant/AssistantChatPanel.svelte", "TIER": "TRIVIAL", @@ -3522,8 +3581,8 @@ "name": "buildConversationTitle", "type": "Function", "tier": "TRIVIAL", - "start_line": 216, - "end_line": 216, + "start_line": 261, + "end_line": 261, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -3540,8 +3599,8 @@ "name": "setConversationFilter", "type": "Function", "tier": "TRIVIAL", - "start_line": 222, - "end_line": 222, + "start_line": 267, + "end_line": 267, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -3558,8 +3617,8 @@ "name": "formatConversationTime", "type": "Function", "tier": "TRIVIAL", - "start_line": 232, - "end_line": 232, + "start_line": 277, + "end_line": 277, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -3626,7 +3685,7 @@ "line_number": 18 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -3683,7 +3742,7 @@ "line_number": 26 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -3717,7 +3776,7 @@ "line_number": 35 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -3996,7 +4055,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 59, + "end_line": 61, "tags": { "TIER": "CRITICAL", "SEMANTICS": "reports, ui, profiles, fallback, mapping", @@ -4016,7 +4075,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 49, - "end_line": 57, + "end_line": 59, "tags": { "PURPOSE": "Resolve visual profile by task type with guaranteed fallback.", "PRE": "taskType may be known/unknown/empty.", @@ -4026,19 +4085,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 49 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 49 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -5110,7 +5158,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -5234,7 +5282,7 @@ "type": "Component", "tier": "CRITICAL", "start_line": 1, - "end_line": 311, + "end_line": 364, "tags": { "TIER": "CRITICAL", "PURPOSE": "Global task drawer for monitoring background operations", @@ -5248,129 +5296,82 @@ }, "relations": [], "children": [ + { + "name": "disconnectWebSocket", + "type": "Function", + "tier": "STANDARD", + "start_line": 121, + "end_line": 135, + "tags": { + "PURPOSE": "Disconnects the active WebSocket connection", + "PRE": "ws may or may not be initialized", + "POST": "ws is closed and set to null", + "TIER": "STANDARD" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, { "name": "loadRecentTasks", "type": "Function", "tier": "STANDARD", - "start_line": 129, - "end_line": 148, + "start_line": 137, + "end_line": 160, "tags": { "PURPOSE": "Load recent tasks for list mode display", + "PRE": "User is on task drawer or api is ready.", "POST": "recentTasks array populated with task list" }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 129 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 129 - } - ], - "score": 0.7333333333333334 + "issues": [], + "score": 1.0 } }, { "name": "selectTask", "type": "Function", "tier": "STANDARD", - "start_line": 150, - "end_line": 160, + "start_line": 162, + "end_line": 175, "tags": { - "PURPOSE": "Select a task from list to view details" + "PURPOSE": "Select a task from list to view details", + "PRE": "task is a valid task object", + "POST": "drawer state updated to show task details" }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 150 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } }, { "name": "goBackToList", "type": "Function", "tier": "STANDARD", - "start_line": 162, - "end_line": 174, + "start_line": 177, + "end_line": 194, "tags": { - "PURPOSE": "Return to task list view from task details" + "PURPOSE": "Return to task list view from task details", + "PRE": "Drawer is open and activeTaskId is set", + "POST": "Drawer switches to list view and reloads tasks", + "TIER": "STANDARD" }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 162 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } } ], @@ -5428,27 +5429,12 @@ { "store": "t", "type": "WRITES_TO", - "line": 204 + "line": 223 }, { "store": "t", "type": "WRITES_TO", - "line": 212 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 225 - }, - { - "store": "t", - "type": "READS_FROM", - "line": 231 - }, - { - "store": "t", - "type": "READS_FROM", - "line": 231 + "line": 240 }, { "store": "t", @@ -5457,43 +5443,53 @@ }, { "store": "t", - "type": "WRITES_TO", - "line": 252 + "type": "READS_FROM", + "line": 248 }, { "store": "t", "type": "READS_FROM", - "line": 271 + "line": 273 }, { "store": "t", "type": "WRITES_TO", - "line": 275 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 281 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 282 - }, - { - "store": "t", - "type": "WRITES_TO", - "line": 283 + "line": 278 }, { "store": "t", "type": "READS_FROM", - "line": 295 + "line": 301 }, { "store": "t", "type": "READS_FROM", - "line": 304 + "line": 308 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 317 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 321 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 334 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 349 + }, + { + "store": "t", + "type": "READS_FROM", + "line": 360 } ] }, @@ -5502,7 +5498,7 @@ "type": "Module", "tier": "TRIVIAL", "start_line": 1, - "end_line": 311, + "end_line": 366, "tags": { "PURPOSE": "Auto-generated module for frontend/src/lib/components/layout/TaskDrawer.svelte", "TIER": "TRIVIAL", @@ -5547,11 +5543,11 @@ } }, { - "name": "handleOverlayClick", + "name": "handleGlobalKeydown", "type": "Function", "tier": "TRIVIAL", - "start_line": 68, - "end_line": 68, + "start_line": 67, + "end_line": 67, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -5581,24 +5577,6 @@ "issues": [], "score": 1.0 } - }, - { - "name": "disconnectWebSocket", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 122, - "end_line": 122, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } } ], "compliance": { @@ -5747,7 +5725,7 @@ "line_number": 3 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -6526,7 +6504,7 @@ "line_number": 24 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -6574,7 +6552,7 @@ "line_number": 77 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -6656,7 +6634,7 @@ "line_number": 34 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -6686,7 +6664,632 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "DashboardHub", + "type": "Page", + "tier": "CRITICAL", + "start_line": 1, + "end_line": 1258, + "tags": { + "TIER": "CRITICAL", + "PURPOSE": "Dashboard Hub - Central hub for managing dashboards with Git status and task actions", + "LAYER": "UI", + "RELATION": "BINDS_TO -> sidebarStore, taskDrawerStore", + "INVARIANT": "Always shows environment selector and dashboard grid", + "UX_STATE": "BulkAction-Modal -> Migration or Backup modal open", + "UX_FEEDBACK": "Floating panel slides up from bottom when items selected", + "UX_RECOVERY": "Refresh button reloads dashboard list" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "+page", + "type": "Module", + "tier": "TRIVIAL", + "start_line": 1, + "end_line": 1258, + "tags": { + "PURPOSE": "Auto-generated module for frontend/src/routes/dashboards/+page.svelte", + "TIER": "TRIVIAL", + "LAYER": "Unknown" + }, + "relations": [], + "children": [ + { + "name": "handleDocumentClick", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 83, + "end_line": 83, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "loadEnvironments", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 95, + "end_line": 95, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "loadDashboards", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 118, + "end_line": 118, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleEnvChange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 168, + "end_line": 168, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleSearch", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 176, + "end_line": 176, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handlePageChange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 181, + "end_line": 181, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handlePageSizeChange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 187, + "end_line": 187, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "updateSelectionState", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 194, + "end_line": 194, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleCheckboxChange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 204, + "end_line": 204, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleSelectAll", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 215, + "end_line": 215, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleSelectVisible", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 226, + "end_line": 226, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "toggleActionDropdown", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 237, + "end_line": 237, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "closeActionDropdown", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 244, + "end_line": 244, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleAction", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 249, + "end_line": 249, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleValidate", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 293, + "end_line": 293, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleTargetEnvChange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 327, + "end_line": 327, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "loadDatabases", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 340, + "end_line": 340, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleMappingUpdate", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 358, + "end_line": 358, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "loadDbMappings", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 365, + "end_line": 365, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleBulkMigrate", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 396, + "end_line": 396, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleBulkBackup", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 439, + "end_line": 439, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleTaskStatusClick", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 476, + "end_line": 476, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "navigateToDashboardDetail", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 485, + "end_line": 485, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "getStatusBadgeClass", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 490, + "end_line": 490, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "getTaskStatusIcon", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 503, + "end_line": 503, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "getPaginationRange", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 520, + "end_line": 520, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + } + ], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "DashboardDetail", + "type": "Page", + "tier": "CRITICAL", + "start_line": 1, + "end_line": 208, + "tags": { + "TIER": "CRITICAL", + "PURPOSE": "Dashboard Detail View - Overview of charts and datasets linked to a dashboard", + "LAYER": "UI", + "RELATION": "BINDS_TO -> dashboard detail API", + "INVARIANT": "Shows dashboard metadata, charts, and datasets for selected environment" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "+page", + "type": "Module", + "tier": "TRIVIAL", + "start_line": 1, + "end_line": 208, + "tags": { + "PURPOSE": "Auto-generated module for frontend/src/routes/dashboards/[id]/+page.svelte", + "TIER": "TRIVIAL", + "LAYER": "Unknown" + }, + "relations": [], + "children": [ + { + "name": "loadDashboardDetail", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 29, + "end_line": 29, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "goBack", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 48, + "end_line": 48, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "openDataset", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 52, + "end_line": 52, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "formatDate", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 56, + "end_line": 56, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 } } ], @@ -6765,19 +7368,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 74 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 74 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -6992,7 +7584,7 @@ "line_number": 61 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -7023,7 +7615,7 @@ "line_number": 74 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7077,7 +7669,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -7678,7 +8270,7 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7709,7 +8301,7 @@ "line_number": 71 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7739,7 +8331,7 @@ "line_number": 94 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7769,7 +8361,7 @@ "line_number": 125 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7799,7 +8391,7 @@ "line_number": 155 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7829,7 +8421,7 @@ "line_number": 167 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7859,7 +8451,7 @@ "line_number": 191 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -7877,19 +8469,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 211 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 211 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -7958,7 +8539,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -8145,7 +8726,7 @@ "line_number": 36 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8175,7 +8756,7 @@ "line_number": 53 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8205,7 +8786,7 @@ "line_number": 85 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -8218,7 +8799,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -8311,7 +8892,7 @@ "line_number": 25 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8342,7 +8923,7 @@ "line_number": 66 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8373,7 +8954,7 @@ "line_number": 90 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8403,7 +8984,7 @@ "line_number": 104 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -8830,7 +9411,7 @@ "line_number": 3 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -8873,7 +9454,7 @@ "line_number": 13 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -8886,7 +9467,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -8931,7 +9512,7 @@ "line_number": 33 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8961,7 +9542,7 @@ "line_number": 50 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -8991,7 +9572,7 @@ "line_number": 73 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9022,7 +9603,7 @@ "line_number": 91 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -9035,7 +9616,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -9090,7 +9671,7 @@ "line_number": 22 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9120,7 +9701,7 @@ "line_number": 40 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -9133,7 +9714,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -9224,19 +9805,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 29 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 29 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -9249,7 +9819,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -9303,7 +9873,7 @@ "line_number": 49 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9333,7 +9903,7 @@ "line_number": 68 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9363,7 +9933,7 @@ "line_number": 87 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9394,7 +9964,7 @@ "line_number": 113 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9425,7 +9995,7 @@ "line_number": 136 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9456,7 +10026,7 @@ "line_number": 161 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -9486,7 +10056,7 @@ "line_number": 174 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -9499,7 +10069,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -9525,7 +10095,7 @@ "line_number": 9 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -9552,7 +10122,7 @@ "line_number": 23 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -9578,7 +10148,7 @@ "line_number": 38 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -9648,7 +10218,7 @@ "line_number": 9 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -9675,7 +10245,7 @@ "line_number": 25 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -9903,7 +10473,7 @@ "line_number": 183 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -9943,7 +10513,7 @@ "line_number": 203 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -9982,7 +10552,7 @@ "line_number": 221 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -10022,7 +10592,7 @@ "line_number": 239 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -10063,7 +10633,7 @@ "line_number": 258 } ], - "score": 0.4666666666666666 + "score": 0.2 } } ], @@ -10097,7 +10667,7 @@ "line_number": 9 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10124,7 +10694,7 @@ "line_number": 34 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10151,7 +10721,7 @@ "line_number": 49 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10178,7 +10748,7 @@ "line_number": 71 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10205,7 +10775,7 @@ "line_number": 87 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10231,7 +10801,7 @@ "line_number": 103 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -10296,7 +10866,7 @@ "line_number": 12 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -10328,7 +10898,7 @@ "line_number": 31 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10360,7 +10930,7 @@ "line_number": 58 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10392,7 +10962,7 @@ "line_number": 90 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10425,7 +10995,7 @@ "line_number": 112 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -10476,7 +11046,7 @@ "line_number": 19 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10506,7 +11076,7 @@ "line_number": 39 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -10519,7 +11089,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "cancel", @@ -10590,7 +11160,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10620,7 +11190,7 @@ "line_number": 48 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -10633,7 +11203,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "update" @@ -10651,14 +11221,16 @@ "type": "Component", "tier": "CRITICAL", "start_line": 1, - "end_line": 203, + "end_line": 241, "tags": { "TIER": "CRITICAL", "SEMANTICS": "task, log, viewer, inline, realtime", "PURPOSE": "Displays detailed logs for a specific task inline or in a modal using TaskLogPanel.", "LAYER": "UI", "RELATION": "USES -> frontend/src/components/tasks/TaskLogPanel.svelte", - "INVARIANT": "Real-time logs are always appended without duplicates." + "INVARIANT": "Real-time logs are always appended without duplicates.", + "PRE": "Needs a valid taskId to fetch logs for.", + "POST": "task logs are displayed and updated in real time." }, "relations": [], "children": [ @@ -10666,9 +11238,13 @@ "name": "handleRealTimeLogs", "type": "Action", "tier": "STANDARD", - "start_line": 44, - "end_line": 58, - "tags": {}, + "start_line": 46, + "end_line": 63, + "tags": { + "PURPOSE": "Sync real-time logs to the current log list", + "PRE": "None", + "POST": "logs are updated with new real-time log entries" + }, "relations": [], "children": [], "compliance": { @@ -10681,56 +11257,97 @@ "name": "fetchLogs", "type": "Function", "tier": "STANDARD", - "start_line": 60, - "end_line": 71, - "tags": {}, + "start_line": 65, + "end_line": 85, + "tags": { + "PURPOSE": "Fetches logs for a given task ID", + "PRE": "taskId is set", + "POST": "logs are populated with API response" + }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PURPOSE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Mandatory Tag: @PURPOSE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 60 - } - ], - "score": 0.0 + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleFilterChange", + "type": "Function", + "tier": "STANDARD", + "start_line": 87, + "end_line": 95, + "tags": { + "PURPOSE": "Updates filter conditions for the log viewer", + "PRE": "event contains detail with source and level", + "POST": "Log viewer filters updated" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "handleRefresh", + "type": "Function", + "tier": "STANDARD", + "start_line": 97, + "end_line": 105, + "tags": { + "PURPOSE": "Refreshes the logs by polling the API", + "PRE": "None", + "POST": "Logs refetched" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "showInline", + "type": "Component", + "tier": "STANDARD", + "start_line": 133, + "end_line": 170, + "tags": { + "PURPOSE": "Shows inline logs -->", + "LAYER": "UI -->", + "SEMANTICS": "logs, inline -->", + "TIER": "STANDARD -->" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "showModal", + "type": "Component", + "tier": "STANDARD", + "start_line": 172, + "end_line": 239, + "tags": { + "PURPOSE": "Shows modal logs -->", + "LAYER": "UI -->", + "SEMANTICS": "logs, modal -->", + "TIER": "STANDARD -->" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 } } ], @@ -10746,121 +11363,65 @@ { "store": "bindable", "type": "WRITES_TO", - "line": 27 + "line": 29 }, { "store": "props", "type": "WRITES_TO", - "line": 32 - }, - { - "store": "state", - "type": "WRITES_TO", - "line": 36 - }, - { - "store": "state", - "type": "WRITES_TO", - "line": 37 + "line": 34 }, { "store": "state", "type": "WRITES_TO", "line": 38 }, + { + "store": "state", + "type": "WRITES_TO", + "line": 39 + }, { "store": "state", "type": "WRITES_TO", "line": 40 }, { - "store": "derived", + "store": "state", "type": "WRITES_TO", "line": 42 }, { - "store": "effect", - "type": "READS_FROM", - "line": 45 + "store": "derived", + "type": "WRITES_TO", + "line": 44 }, { "store": "effect", "type": "READS_FROM", - "line": 81 + "line": 50 + }, + { + "store": "effect", + "type": "READS_FROM", + "line": 107 }, { "store": "t", "type": "READS_FROM", - "line": 116 + "line": 147 }, { "store": "t", "type": "READS_FROM", - "line": 169 + "line": 206 }, { "store": "t", "type": "READS_FROM", - "line": 183 + "line": 220 } ] }, - { - "name": "TaskLogViewer", - "type": "Module", - "tier": "TRIVIAL", - "start_line": 1, - "end_line": 203, - "tags": { - "PURPOSE": "Auto-generated module for frontend/src/components/TaskLogViewer.svelte", - "TIER": "TRIVIAL", - "LAYER": "Unknown" - }, - "relations": [], - "children": [ - { - "name": "handleFilterChange", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 73, - "end_line": 73, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, - { - "name": "handleRefresh", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 77, - "end_line": 77, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - } - ], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, { "name": "Footer", "type": "Component", @@ -10923,7 +11484,7 @@ "line_number": 29 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -10953,7 +11514,7 @@ "line_number": 44 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -10966,7 +11527,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "cancel", @@ -10990,7 +11551,7 @@ "type": "Component", "tier": "STANDARD", "start_line": 1, - "end_line": 376, + "end_line": 357, "tags": { "TIER": "STANDARD", "SEMANTICS": "dashboard, grid, selection, pagination", @@ -11006,7 +11567,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 43, - "end_line": 89, + "end_line": 70, "tags": { "PURPOSE": "Triggers dashboard validation task." }, @@ -11046,15 +11607,15 @@ "line_number": 43 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { "name": "handleSort", "type": "Function", "tier": "STANDARD", - "start_line": 134, - "end_line": 146, + "start_line": 115, + "end_line": 127, "tags": { "PURPOSE": "Toggles sort direction or changes sort column.", "PRE": "column name is provided.", @@ -11068,23 +11629,23 @@ { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 134 + "line_number": 115 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 134 + "line_number": 115 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "handleSelectionChange", "type": "Function", "tier": "STANDARD", - "start_line": 148, - "end_line": 162, + "start_line": 129, + "end_line": 143, "tags": { "PURPOSE": "Handles individual checkbox changes.", "PRE": "dashboard ID and checked status provided.", @@ -11098,23 +11659,23 @@ { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 148 + "line_number": 129 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 148 + "line_number": 129 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "handleSelectAll", "type": "Function", "tier": "STANDARD", - "start_line": 164, - "end_line": 182, + "start_line": 145, + "end_line": 163, "tags": { "PURPOSE": "Handles select all checkbox.", "PRE": "checked status provided.", @@ -11128,23 +11689,23 @@ { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 164 + "line_number": 145 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 164 + "line_number": 145 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "goToPage", "type": "Function", "tier": "STANDARD", - "start_line": 184, - "end_line": 193, + "start_line": 165, + "end_line": 174, "tags": { "PURPOSE": "Changes current page.", "PRE": "page index is provided.", @@ -11158,23 +11719,23 @@ { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 184 + "line_number": 165 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 184 + "line_number": 165 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "openGit", "type": "Function", "tier": "STANDARD", - "start_line": 195, - "end_line": 204, + "start_line": 176, + "end_line": 185, "tags": { "PURPOSE": "Opens the Git management modal for a dashboard." }, @@ -11186,35 +11747,35 @@ { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 }, { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 }, { "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", "severity": "WARNING", - "line_number": 195 + "line_number": 176 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -11280,82 +11841,82 @@ { "store": "derived", "type": "WRITES_TO", - "line": 92 + "line": 73 }, { "store": "derived", "type": "WRITES_TO", - "line": 98 + "line": 79 }, { "store": "derived", "type": "WRITES_TO", - "line": 112 + "line": 93 }, { "store": "derived", "type": "WRITES_TO", - "line": 119 + "line": 100 }, { "store": "derived", "type": "WRITES_TO", - "line": 121 + "line": 102 }, { "store": "derived", "type": "WRITES_TO", - "line": 125 + "line": 106 }, { "store": "t", "type": "WRITES_TO", - "line": 211 + "line": 192 }, { "store": "t", "type": "READS_FROM", - "line": 233 + "line": 214 }, { "store": "t", "type": "READS_FROM", - "line": 244 + "line": 225 }, { "store": "t", "type": "READS_FROM", - "line": 255 + "line": 236 }, { "store": "t", "type": "READS_FROM", - "line": 264 + "line": 245 }, { "store": "t", "type": "READS_FROM", - "line": 268 + "line": 249 }, { "store": "t", "type": "READS_FROM", - "line": 322 + "line": 303 }, { "store": "t", "type": "READS_FROM", - "line": 334 + "line": 315 }, { "store": "t", "type": "READS_FROM", - "line": 352 + "line": 333 }, { "store": "t", "type": "READS_FROM", - "line": 360 + "line": 341 } ] }, @@ -11586,7 +12147,7 @@ "line_number": 19 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11616,7 +12177,7 @@ "line_number": 49 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11646,7 +12207,7 @@ "line_number": 67 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11676,7 +12237,7 @@ "line_number": 83 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11706,7 +12267,7 @@ "line_number": 99 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11736,7 +12297,7 @@ "line_number": 109 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -11749,7 +12310,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -11839,19 +12400,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -11881,7 +12431,7 @@ "line_number": 144 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11911,7 +12461,7 @@ "line_number": 170 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11941,7 +12491,7 @@ "line_number": 193 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -11971,7 +12521,7 @@ "line_number": 229 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -12001,7 +12551,7 @@ "line_number": 251 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -12031,7 +12581,7 @@ "line_number": 267 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -12049,19 +12599,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 280 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 280 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -12107,7 +12646,7 @@ "line_number": 309 } ], - "score": 0.1999999999999999 + "score": 0.0 } } ], @@ -12210,7 +12749,7 @@ "line_number": 23 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -12240,7 +12779,7 @@ "line_number": 40 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -12270,7 +12809,7 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -12283,7 +12822,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "select" @@ -12373,7 +12912,7 @@ "line_number": 38 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -12386,7 +12925,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "submit" @@ -12442,7 +12981,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -12455,7 +12994,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "change" @@ -12888,7 +13427,7 @@ "line_number": 13 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -13023,19 +13562,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -13161,7 +13689,7 @@ "line_number": 21 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13210,7 +13738,7 @@ "line_number": 61 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -13331,7 +13859,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13361,7 +13889,7 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -13374,7 +13902,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "success" @@ -13483,7 +14011,7 @@ "line_number": 22 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13513,7 +14041,7 @@ "line_number": 38 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -13526,7 +14054,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -13607,7 +14135,7 @@ "line_number": 35 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13637,7 +14165,7 @@ "line_number": 49 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13667,7 +14195,7 @@ "line_number": 92 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -13680,7 +14208,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -13905,7 +14433,7 @@ "line_number": 28 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13936,7 +14464,7 @@ "line_number": 44 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -13968,7 +14496,7 @@ "line_number": 87 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -13981,7 +14509,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -14122,7 +14650,7 @@ "line_number": 30 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -14140,19 +14668,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 41 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 41 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -14165,7 +14682,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -14250,23 +14767,13 @@ "severity": "WARNING", "line_number": 40 }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 - }, { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", "line_number": 40 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 40 } ], - "score": 0.5333333333333333 + "score": 0.6 } }, { @@ -14284,19 +14791,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -14309,7 +14805,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "deploy" @@ -14441,7 +14937,7 @@ "line_number": 32 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -14459,19 +14955,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 50 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 50 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -14484,7 +14969,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "resolve" @@ -14562,7 +15047,7 @@ "line_number": 38 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -14601,7 +15086,7 @@ "line_number": 63 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -14619,19 +15104,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 104 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 104 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -14807,7 +15281,7 @@ "line_number": 38 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -14825,19 +15299,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 49 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 49 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { @@ -14867,7 +15330,7 @@ "line_number": 70 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -14891,23 +15354,13 @@ "severity": "WARNING", "line_number": 81 }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 81 - }, { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", "line_number": 81 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 81 } ], - "score": 0.5333333333333333 + "score": 0.6 } }, { @@ -14925,19 +15378,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 102 - }, - { - "message": "Missing Belief State Logging: Function should use console.log with [ID][STATE] (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 102 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -14950,7 +15392,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "events": [ "change" @@ -15039,7 +15481,7 @@ "line_number": 54 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -15069,7 +15511,7 @@ "line_number": 77 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -15099,7 +15541,7 @@ "line_number": 101 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -15129,7 +15571,7 @@ "line_number": 122 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -15159,7 +15601,7 @@ "line_number": 141 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -15172,7 +15614,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -15361,7 +15803,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "data_flow": [ { @@ -15473,7 +15915,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 }, "props": [ { @@ -15819,7 +16261,7 @@ "line_number": 18 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -15897,17 +16339,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 11 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 11 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -15920,7 +16362,7 @@ "line_number": 2 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -15928,7 +16370,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 275, + "end_line": 284, "tags": { "TIER": "CRITICAL", "SEMANTICS": "app, main, entrypoint, fastapi", @@ -15996,11 +16438,31 @@ } }, { - "name": "log_requests", + "name": "network_error_handler", "type": "Function", "tier": "STANDARD", "start_line": 75, - "end_line": 109, + "end_line": 89, + "tags": { + "PURPOSE": "Global exception handler for NetworkError.", + "PRE": "request is a FastAPI Request object.", + "POST": "Returns 503 HTTP Exception.", + "PARAM": "exc (NetworkError) - The exception instance." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "log_requests", + "type": "Function", + "tier": "STANDARD", + "start_line": 91, + "end_line": 117, "tags": { "PURPOSE": "Middleware to log incoming HTTP requests and their response status.", "PRE": "request is a FastAPI Request object.", @@ -16019,8 +16481,8 @@ "name": "api.include_routers", "type": "Action", "tier": "STANDARD", - "start_line": 130, - "end_line": 134, + "start_line": 138, + "end_line": 142, "tags": { "PURPOSE": "Registers all API routers with the FastAPI application.", "LAYER": "API", @@ -16038,8 +16500,8 @@ "name": "websocket_endpoint", "type": "Function", "tier": "CRITICAL", - "start_line": 136, - "end_line": 237, + "start_line": 144, + "end_line": 245, "tags": { "PURPOSE": "Provides a WebSocket endpoint for real-time log streaming of a task with server-side filtering.", "PRE": "task_id must be a valid task ID.", @@ -16059,8 +16521,8 @@ "name": "StaticFiles", "type": "Mount", "tier": "STANDARD", - "start_line": 239, - "end_line": 274, + "start_line": 247, + "end_line": 283, "tags": { "SEMANTICS": "static, frontend, spa", "PURPOSE": "Mounts the frontend build directory to serve static assets." @@ -16071,8 +16533,8 @@ "name": "serve_spa", "type": "Function", "tier": "STANDARD", - "start_line": 246, - "end_line": 263, + "start_line": 254, + "end_line": 272, "tags": { "PURPOSE": "Serves the SPA frontend for any path not matched by API routes.", "PRE": "frontend_path exists.", @@ -16082,32 +16544,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 246 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 246 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 246 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "read_root", "type": "Function", "tier": "STANDARD", - "start_line": 265, - "end_line": 273, + "start_line": 274, + "end_line": 282, "tags": { "PURPOSE": "A simple root endpoint to confirm that the API is running when frontend is missing.", "PRE": "None.", @@ -16128,30 +16574,12 @@ "score": 1.0 } }, - { - "name": "network_error_handler", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 82, - "end_line": 82, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, { "name": "matches_filters", "type": "Function", "tier": "TRIVIAL", - "start_line": 171, - "end_line": 171, + "start_line": 179, + "end_line": 179, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -16203,17 +16631,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 32 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 32 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16234,17 +16662,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 57 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 57 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16265,17 +16693,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 67 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 67 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16296,17 +16724,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 77 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 77 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16327,17 +16755,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 87 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 87 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16358,17 +16786,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 97 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 97 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16408,17 +16836,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 112 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 112 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16441,17 +16869,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 141 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 141 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -16482,7 +16910,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -16629,7 +17057,7 @@ "line_number": 62 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16667,7 +17095,7 @@ "line_number": 81 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16705,7 +17133,7 @@ "line_number": 91 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16743,7 +17171,7 @@ "line_number": 156 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16781,7 +17209,7 @@ "line_number": 182 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16819,7 +17247,7 @@ "line_number": 298 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -16857,7 +17285,7 @@ "line_number": 319 } ], - "score": 0.4666666666666666 + "score": 0.2 } } ], @@ -16931,7 +17359,7 @@ "line_number": 51 } ], - "score": 0.7333333333333334 + "score": 0.6 } } ], @@ -16944,7 +17372,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -16992,7 +17420,7 @@ "line_number": 22 } ], - "score": 0.7333333333333334 + "score": 0.6 } } ], @@ -17005,7 +17433,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -17162,7 +17590,7 @@ "line_number": 45 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17190,7 +17618,7 @@ "line_number": 57 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17218,7 +17646,7 @@ "line_number": 65 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17246,7 +17674,7 @@ "line_number": 73 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17274,7 +17702,7 @@ "line_number": 84 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17302,7 +17730,7 @@ "line_number": 91 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17330,7 +17758,7 @@ "line_number": 99 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17358,7 +17786,7 @@ "line_number": 106 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -17386,7 +17814,7 @@ "line_number": 115 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -18035,7 +18463,7 @@ "line_number": 25 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -18102,7 +18530,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -18193,7 +18621,7 @@ "line_number": 54 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 54 }, @@ -18208,7 +18636,7 @@ "line_number": 54 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 54 }, @@ -18223,7 +18651,7 @@ "line_number": 54 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 54 } @@ -18277,7 +18705,7 @@ "line_number": 64 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18307,7 +18735,7 @@ "line_number": 83 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 83 }, @@ -18322,7 +18750,7 @@ "line_number": 83 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 83 }, @@ -18337,7 +18765,7 @@ "line_number": 83 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 83 } @@ -18450,7 +18878,7 @@ "line_number": 156 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18520,7 +18948,7 @@ "line_number": 180 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18569,7 +18997,7 @@ "line_number": 199 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18618,7 +19046,7 @@ "line_number": 207 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18668,7 +19096,7 @@ "line_number": 215 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18717,7 +19145,7 @@ "line_number": 227 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18767,7 +19195,7 @@ "line_number": 241 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -18816,7 +19244,7 @@ "line_number": 266 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -19420,7 +19848,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 279, + "end_line": 319, "tags": { "SEMANTICS": "logging, websocket, streaming, handler", "PURPOSE": "Configures the application's logging system, including a custom handler for buffering logs and streaming them over WebSockets.", @@ -19434,7 +19862,7 @@ "type": "Class", "tier": "STANDARD", "start_line": 25, - "end_line": 41, + "end_line": 53, "tags": { "PURPOSE": "Custom logging formatter that adds belief state prefixes to log messages." }, @@ -19445,7 +19873,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 28, - "end_line": 40, + "end_line": 52, "tags": { "PURPOSE": "Formats the log record, adding belief state context if available.", "PRE": "record is a logging.LogRecord.", @@ -19477,15 +19905,15 @@ "line_number": 25 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { "name": "LogEntry", "type": "Class", "tier": "STANDARD", - "start_line": 44, - "end_line": 53, + "start_line": 56, + "end_line": 65, "tags": { "SEMANTICS": "log, entry, record, pydantic", "PURPOSE": "A Pydantic model representing a single, structured log entry. This is a re-definition for consistency, as it's also defined in task_manager.py." @@ -19498,23 +19926,23 @@ { "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", "severity": "WARNING", - "line_number": 44 + "line_number": 56 }, { "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", "severity": "WARNING", - "line_number": 44 + "line_number": 56 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { "name": "belief_scope", "type": "Function", "tier": "STANDARD", - "start_line": 55, - "end_line": 89, + "start_line": 67, + "end_line": 101, "tags": { "PURPOSE": "Context manager for structured Belief State logging.", "PARAM": "message (str) - Optional entry message.", @@ -19534,8 +19962,8 @@ "name": "configure_logger", "type": "Function", "tier": "STANDARD", - "start_line": 91, - "end_line": 134, + "start_line": 103, + "end_line": 146, "tags": { "PURPOSE": "Configures the logger with the provided logging settings.", "PRE": "config is a valid LoggingConfig instance.", @@ -19555,8 +19983,8 @@ "name": "get_task_log_level", "type": "Function", "tier": "STANDARD", - "start_line": 136, - "end_line": 145, + "start_line": 148, + "end_line": 157, "tags": { "PURPOSE": "Returns the current task log level filter.", "PRE": "None.", @@ -19576,8 +20004,8 @@ "name": "should_log_task_level", "type": "Function", "tier": "STANDARD", - "start_line": 147, - "end_line": 164, + "start_line": 159, + "end_line": 176, "tags": { "PURPOSE": "Checks if a log level should be recorded based on task_log_level setting.", "PRE": "level is a valid log level string.", @@ -19598,8 +20026,8 @@ "name": "WebSocketLogHandler", "type": "Class", "tier": "STANDARD", - "start_line": 166, - "end_line": 228, + "start_line": 178, + "end_line": 240, "tags": { "SEMANTICS": "logging, handler, websocket, buffer", "PURPOSE": "A custom logging handler that captures log records into a buffer. It is designed to be extended for real-time log streaming over WebSockets." @@ -19610,8 +20038,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 174, - "end_line": 185, + "start_line": 186, + "end_line": 197, "tags": { "PURPOSE": "Initializes the handler with a fixed-capacity buffer.", "PRE": "capacity is an integer.", @@ -19631,8 +20059,8 @@ "name": "emit", "type": "Function", "tier": "STANDARD", - "start_line": 187, - "end_line": 213, + "start_line": 199, + "end_line": 225, "tags": { "PURPOSE": "Captures a log record, formats it, and stores it in the buffer.", "PRE": "record is a logging.LogRecord.", @@ -19652,8 +20080,8 @@ "name": "get_recent_logs", "type": "Function", "tier": "STANDARD", - "start_line": 215, - "end_line": 226, + "start_line": 227, + "end_line": 238, "tags": { "PURPOSE": "Returns a list of recent log entries from the buffer.", "PRE": "None.", @@ -19676,23 +20104,23 @@ { "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", "severity": "WARNING", - "line_number": 166 + "line_number": 178 }, { "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", "severity": "WARNING", - "line_number": 166 + "line_number": 178 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { "name": "Logger", "type": "Global", "tier": "STANDARD", - "start_line": 230, - "end_line": 278, + "start_line": 242, + "end_line": 318, "tags": { "SEMANTICS": "logger, global, instance", "PURPOSE": "The global logger instance for the application, configured with both a console handler and the custom WebSocket handler." @@ -19703,8 +20131,8 @@ "name": "believed", "type": "Function", "tier": "STANDARD", - "start_line": 235, - "end_line": 257, + "start_line": 247, + "end_line": 269, "tags": { "PURPOSE": "A decorator that wraps a function in a belief scope.", "PARAM": "anchor_id (str) - The identifier for the semantic block.", @@ -19717,8 +20145,8 @@ "name": "decorator", "type": "Function", "tier": "STANDARD", - "start_line": 241, - "end_line": 255, + "start_line": 253, + "end_line": 267, "tags": { "PURPOSE": "Internal decorator for belief scope.", "PRE": "func must be a callable.", @@ -19730,8 +20158,8 @@ "name": "wrapper", "type": "Function", "tier": "STANDARD", - "start_line": 246, - "end_line": 253, + "start_line": 258, + "end_line": 265, "tags": { "PURPOSE": "Internal wrapper that enters belief scope.", "PRE": "None.", @@ -19758,6 +20186,153 @@ "issues": [], "score": 1.0 } + }, + { + "name": "explore", + "type": "Function", + "tier": "STANDARD", + "start_line": 293, + "end_line": 298, + "tags": { + "PURPOSE": "Logs an EXPLORE message (Van der Waals force) for searching, alternatives, and hypotheses.", + "SEMANTICS": "log, explore, molecule" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [ + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 293 + } + ], + "score": 0.0 + } + }, + { + "name": "reason", + "type": "Function", + "tier": "STANDARD", + "start_line": 300, + "end_line": 305, + "tags": { + "PURPOSE": "Logs a REASON message (Covalent bond) for strict deduction and core logic.", + "SEMANTICS": "log, reason, molecule" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [ + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 300 + } + ], + "score": 0.0 + } + }, + { + "name": "reflect", + "type": "Function", + "tier": "STANDARD", + "start_line": 307, + "end_line": 312, + "tags": { + "PURPOSE": "Logs a REFLECT message (Hydrogen bond) for self-check and structural validation.", + "SEMANTICS": "log, reflect, molecule" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [ + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + }, + { + "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + }, + { + "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 307 + } + ], + "score": 0.0 + } } ], "compliance": { @@ -19776,7 +20351,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -20011,22 +20586,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 78 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 78 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 78 } ], - "score": 0.7 + "score": 0.55 } } ], @@ -20044,7 +20619,7 @@ "line_number": 20 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -20057,7 +20632,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -20245,7 +20820,7 @@ "line_number": 7 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -20271,7 +20846,7 @@ "line_number": 130 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -20320,7 +20895,7 @@ "line_number": 15 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -20350,7 +20925,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -20484,17 +21059,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 21 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 21 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -20515,17 +21090,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 38 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 38 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -20538,7 +21113,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -20626,17 +21201,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 14 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 14 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -20658,17 +21233,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 34 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 34 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -20681,7 +21256,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -20764,7 +21339,7 @@ "line_number": 21 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -20946,7 +21521,7 @@ "line_number": 112 } ], - "score": 0.6333333333333333 + "score": 0.45000000000000007 } } ], @@ -20964,7 +21539,7 @@ "line_number": 18 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -20977,7 +21552,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -21170,7 +21745,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -21221,7 +21796,7 @@ "line_number": 25 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -21457,22 +22032,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 358 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 358 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 358 } ], - "score": 0.7 + "score": 0.55 } } ], @@ -21576,7 +22151,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -21647,7 +22222,7 @@ "line_number": 22 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -21695,7 +22270,7 @@ "line_number": 36 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -21743,7 +22318,7 @@ "line_number": 49 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -21791,7 +22366,7 @@ "line_number": 62 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -21839,7 +22414,7 @@ "line_number": 75 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -22095,7 +22670,7 @@ "line_number": 89 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -22126,7 +22701,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -22167,17 +22742,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -22190,7 +22765,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -22262,7 +22837,7 @@ "line_number": 21 } ], - "score": 0.6333333333333333 + "score": 0.45000000000000007 } }, { @@ -22361,7 +22936,7 @@ "line_number": 18 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -22374,7 +22949,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -22557,7 +23132,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -22565,7 +23140,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 167, + "end_line": 177, "tags": { "SEMANTICS": "task, logger, context, plugin, attribution", "PURPOSE": "Provides a dedicated logger for tasks with automatic source attribution.", @@ -22585,12 +23160,13 @@ "type": "Class", "tier": "CRITICAL", "start_line": 13, - "end_line": 165, + "end_line": 175, "tags": { "SEMANTICS": "logger, task, source, attribution", "PURPOSE": "A wrapper around TaskManager._add_log that carries task_id and source context.", "TIER": "CRITICAL", "INVARIANT": "All log calls include the task_id and source.", + "TEST_DATA": "task_logger -> {\"task_id\": \"test_123\", \"source\": \"test_plugin\"}", "UX_STATE": "Idle -> Logging -> (system records log)" }, "relations": [], @@ -22599,8 +23175,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 33, - "end_line": 49, + "start_line": 34, + "end_line": 50, "tags": { "PURPOSE": "Initialize the TaskLogger with task context.", "PRE": "add_log_fn is a callable that accepts (task_id, level, message, context, source, metadata).", @@ -22619,8 +23195,8 @@ "name": "with_source", "type": "Function", "tier": "STANDARD", - "start_line": 51, - "end_line": 64, + "start_line": 52, + "end_line": 65, "tags": { "PURPOSE": "Create a sub-logger with a different default source.", "PRE": "source is a non-empty string.", @@ -22640,13 +23216,14 @@ "name": "_log", "type": "Function", "tier": "STANDARD", - "start_line": 66, - "end_line": 89, + "start_line": 67, + "end_line": 91, "tags": { "PURPOSE": "Internal method to log a message at a given level.", "PRE": "level is a valid log level string.", "POST": "Log entry added via add_log_fn.", - "PARAM": "metadata (Optional[Dict]) - Additional structured data." + "PARAM": "metadata (Optional[Dict]) - Additional structured data.", + "UX_STATE": "Logging -> (writing internal log)" }, "relations": [], "children": [], @@ -22660,204 +23237,88 @@ "name": "debug", "type": "Function", "tier": "STANDARD", - "start_line": 91, - "end_line": 103, + "start_line": 93, + "end_line": 107, "tags": { "PURPOSE": "Log a DEBUG level message.", + "PRE": "message is a string.", + "POST": "Log entry added via internally with DEBUG level.", "PARAM": "metadata (Optional[Dict]) - Additional data." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 91 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } }, { "name": "info", "type": "Function", "tier": "STANDARD", - "start_line": 105, - "end_line": 117, + "start_line": 109, + "end_line": 123, "tags": { "PURPOSE": "Log an INFO level message.", + "PRE": "message is a string.", + "POST": "Log entry added internally with INFO level.", "PARAM": "metadata (Optional[Dict]) - Additional data." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 105 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } }, { "name": "warning", "type": "Function", "tier": "STANDARD", - "start_line": 119, - "end_line": 131, + "start_line": 125, + "end_line": 139, "tags": { "PURPOSE": "Log a WARNING level message.", + "PRE": "message is a string.", + "POST": "Log entry added internally with WARNING level.", "PARAM": "metadata (Optional[Dict]) - Additional data." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } }, { "name": "error", "type": "Function", "tier": "STANDARD", - "start_line": 133, - "end_line": 145, + "start_line": 141, + "end_line": 155, "tags": { "PURPOSE": "Log an ERROR level message.", + "PRE": "message is a string.", + "POST": "Log entry added internally with ERROR level.", "PARAM": "metadata (Optional[Dict]) - Additional data." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - }, - { - "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 133 - } - ], - "score": 0.26666666666666655 + "issues": [], + "score": 1.0 } }, { "name": "progress", "type": "Function", "tier": "STANDARD", - "start_line": 147, - "end_line": 163, + "start_line": 157, + "end_line": 173, "tags": { "PURPOSE": "Log a progress update with percentage.", "PRE": "percent is between 0 and 100.", @@ -22889,10 +23350,11 @@ { "name": "TaskPersistenceModule", "type": "Module", - "tier": "STANDARD", + "tier": "CRITICAL", "start_line": 1, - "end_line": 427, + "end_line": 454, "tags": { + "TIER": "CRITICAL", "SEMANTICS": "persistence, sqlite, sqlalchemy, task, storage", "PURPOSE": "Handles the persistence of tasks using SQLAlchemy and the tasks.db database.", "LAYER": "Core", @@ -22904,21 +23366,81 @@ { "name": "TaskPersistenceService", "type": "Class", - "tier": "STANDARD", - "start_line": 21, - "end_line": 215, + "tier": "CRITICAL", + "start_line": 22, + "end_line": 240, "tags": { + "TIER": "CRITICAL", "SEMANTICS": "persistence, service, database, sqlalchemy", - "PURPOSE": "Provides methods to save and load tasks from the tasks.db database using SQLAlchemy." + "PURPOSE": "Provides methods to save and load tasks from the tasks.db database using SQLAlchemy.", + "INVARIANT": "Persistence must handle potentially missing task fields natively." }, "relations": [], "children": [ + { + "name": "_json_load_if_needed", + "type": "Function", + "tier": "STANDARD", + "start_line": 28, + "end_line": 48, + "tags": { + "PURPOSE": "Safely load JSON strings from DB if necessary", + "PRE": "value is an arbitrary database value", + "POST": "Returns parsed JSON object, list, string, or primitive" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_parse_datetime", + "type": "Function", + "tier": "STANDARD", + "start_line": 50, + "end_line": 65, + "tags": { + "PURPOSE": "Safely parse a datetime string from the database", + "PRE": "value is an ISO string or datetime object", + "POST": "Returns datetime object or None" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, + { + "name": "_resolve_environment_id", + "type": "Function", + "tier": "STANDARD", + "start_line": 67, + "end_line": 81, + "tags": { + "TIER": "STANDARD", + "PURPOSE": "Resolve environment id based on provided value or fallback to default", + "PRE": "Session is active", + "POST": "Environment ID is returned" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, { "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 59, - "end_line": 67, + "start_line": 83, + "end_line": 91, "tags": { "PURPOSE": "Initializes the persistence service.", "PRE": "None.", @@ -22936,8 +23458,8 @@ "name": "persist_task", "type": "Function", "tier": "STANDARD", - "start_line": 69, - "end_line": 128, + "start_line": 93, + "end_line": 153, "tags": { "PURPOSE": "Persists or updates a single task in the database.", "PRE": "isinstance(task, Task)", @@ -22957,8 +23479,8 @@ "name": "persist_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 130, - "end_line": 139, + "start_line": 155, + "end_line": 164, "tags": { "PURPOSE": "Persists multiple tasks.", "PRE": "isinstance(tasks, list)", @@ -22977,8 +23499,8 @@ "name": "load_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 141, - "end_line": 193, + "start_line": 166, + "end_line": 218, "tags": { "PURPOSE": "Loads tasks from the database.", "PRE": "limit is an integer.", @@ -22998,8 +23520,8 @@ "name": "delete_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 195, - "end_line": 213, + "start_line": 220, + "end_line": 238, "tags": { "PURPOSE": "Deletes specific tasks from the database.", "PRE": "task_ids is a list of strings.", @@ -23017,27 +23539,16 @@ ], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 21 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 21 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "TaskLogPersistenceService", "type": "Class", "tier": "CRITICAL", - "start_line": 217, - "end_line": 426, + "start_line": 242, + "end_line": 453, "tags": { "SEMANTICS": "persistence, service, database, log, sqlalchemy", "PURPOSE": "Provides methods to save and query task logs from the task_logs table.", @@ -23055,42 +23566,28 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 229, - "end_line": 234, + "start_line": 254, + "end_line": 261, "tags": { - "PURPOSE": "Initialize the log persistence service.", - "POST": "Service is ready." + "TIER": "STANDARD", + "PURPOSE": "Initializes the TaskLogPersistenceService", + "PRE": "config is provided or defaults are used", + "POST": "Service is ready for log persistence" }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 229 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 229 - }, - { - "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 229 - } - ], - "score": 0.6333333333333333 + "issues": [], + "score": 1.0 } }, { "name": "add_logs", "type": "Function", "tier": "STANDARD", - "start_line": 236, - "end_line": 265, + "start_line": 263, + "end_line": 292, "tags": { "PURPOSE": "Batch insert log entries for a task.", "PRE": "logs is a list of LogEntry objects.", @@ -23110,8 +23607,8 @@ "name": "get_logs", "type": "Function", "tier": "STANDARD", - "start_line": 267, - "end_line": 317, + "start_line": 294, + "end_line": 344, "tags": { "PURPOSE": "Query logs for a task with filtering and pagination.", "PRE": "task_id is a valid task ID.", @@ -23131,8 +23628,8 @@ "name": "get_log_stats", "type": "Function", "tier": "STANDARD", - "start_line": 319, - "end_line": 362, + "start_line": 346, + "end_line": 389, "tags": { "PURPOSE": "Get statistics about logs for a task.", "PRE": "task_id is a valid task ID.", @@ -23152,8 +23649,8 @@ "name": "get_sources", "type": "Function", "tier": "STANDARD", - "start_line": 364, - "end_line": 381, + "start_line": 391, + "end_line": 408, "tags": { "PURPOSE": "Get unique sources for a task's logs.", "PRE": "task_id is a valid task ID.", @@ -23173,8 +23670,8 @@ "name": "delete_logs_for_task", "type": "Function", "tier": "STANDARD", - "start_line": 383, - "end_line": 402, + "start_line": 410, + "end_line": 429, "tags": { "PURPOSE": "Delete all logs for a specific task.", "PRE": "task_id is a valid task ID.", @@ -23194,8 +23691,8 @@ "name": "delete_logs_for_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 404, - "end_line": 424, + "start_line": 431, + "end_line": 451, "tags": { "PURPOSE": "Delete all logs for multiple tasks.", "PRE": "task_ids is a list of task IDs.", @@ -23217,66 +23714,12 @@ "score": 1.0 } }, - { - "name": "_json_load_if_needed", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 26, - "end_line": 26, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, - { - "name": "_parse_datetime", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 42, - "end_line": 42, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, - { - "name": "_resolve_environment_id", - "type": "Function", - "tier": "TRIVIAL", - "start_line": 53, - "end_line": 53, - "tags": { - "PURPOSE": "Auto-detected function (orphan)", - "TIER": "TRIVIAL" - }, - "relations": [], - "children": [], - "compliance": { - "valid": true, - "issues": [], - "score": 1.0 - } - }, { "name": "json_serializable", "type": "Function", "tier": "TRIVIAL", - "start_line": 92, - "end_line": 92, + "start_line": 116, + "end_line": 116, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -23292,23 +23735,18 @@ ], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1 - } - ], - "score": 0.85 + "issues": [], + "score": 1.0 } }, { "name": "TaskManagerModule", "type": "Module", - "tier": "STANDARD", + "tier": "CRITICAL", "start_line": 1, - "end_line": 593, + "end_line": 597, "tags": { + "TIER": "CRITICAL", "SEMANTICS": "task, manager, lifecycle, execution, state", "PURPOSE": "Manages the lifecycle of tasks, including their creation, execution, and state tracking. It uses a thread pool to run plugins asynchronously.", "LAYER": "Core", @@ -23322,8 +23760,8 @@ "name": "TaskManager", "type": "Class", "tier": "CRITICAL", - "start_line": 23, - "end_line": 592, + "start_line": 24, + "end_line": 596, "tags": { "SEMANTICS": "task, manager, lifecycle, execution, state", "PURPOSE": "Manages the lifecycle of tasks, including their creation, execution, and state tracking.", @@ -23336,8 +23774,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 38, - "end_line": 69, + "start_line": 39, + "end_line": 70, "tags": { "PURPOSE": "Initialize the TaskManager with dependencies.", "PRE": "plugin_loader is initialized.", @@ -23356,8 +23794,8 @@ "name": "_flusher_loop", "type": "Function", "tier": "STANDARD", - "start_line": 71, - "end_line": 80, + "start_line": 72, + "end_line": 82, "tags": { "PURPOSE": "Background thread that periodically flushes log buffer to database.", "PRE": "TaskManager is initialized.", @@ -23367,32 +23805,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 71 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 71 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 71 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_flush_logs", "type": "Function", "tier": "STANDARD", - "start_line": 82, - "end_line": 105, + "start_line": 84, + "end_line": 108, "tags": { "PURPOSE": "Flush all buffered logs to the database.", "PRE": "None.", @@ -23402,32 +23824,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 82 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 82 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 82 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_flush_task_logs", "type": "Function", "tier": "STANDARD", - "start_line": 107, - "end_line": 122, + "start_line": 110, + "end_line": 126, "tags": { "PURPOSE": "Flush logs for a specific task immediately.", "PRE": "task_id exists.", @@ -23438,32 +23844,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 107 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 107 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 107 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "create_task", "type": "Function", "tier": "STANDARD", - "start_line": 124, - "end_line": 151, + "start_line": 128, + "end_line": 155, "tags": { "PURPOSE": "Creates and queues a new task for execution.", "PRE": "Plugin with plugin_id exists. Params are valid.", @@ -23484,8 +23874,8 @@ "name": "_run_task", "type": "Function", "tier": "STANDARD", - "start_line": 153, - "end_line": 217, + "start_line": 157, + "end_line": 221, "tags": { "PURPOSE": "Internal method to execute a task with TaskContext support.", "PRE": "Task exists in registry.", @@ -23504,8 +23894,8 @@ "name": "resolve_task", "type": "Function", "tier": "STANDARD", - "start_line": 219, - "end_line": 241, + "start_line": 223, + "end_line": 245, "tags": { "PURPOSE": "Resumes a task that is awaiting mapping.", "PRE": "Task exists and is in AWAITING_MAPPING state.", @@ -23525,8 +23915,8 @@ "name": "wait_for_resolution", "type": "Function", "tier": "STANDARD", - "start_line": 243, - "end_line": 263, + "start_line": 247, + "end_line": 267, "tags": { "PURPOSE": "Pauses execution and waits for a resolution signal.", "PRE": "Task exists.", @@ -23545,8 +23935,8 @@ "name": "wait_for_input", "type": "Function", "tier": "STANDARD", - "start_line": 265, - "end_line": 284, + "start_line": 269, + "end_line": 288, "tags": { "PURPOSE": "Pauses execution and waits for user input.", "PRE": "Task exists.", @@ -23565,8 +23955,8 @@ "name": "get_task", "type": "Function", "tier": "STANDARD", - "start_line": 286, - "end_line": 295, + "start_line": 290, + "end_line": 299, "tags": { "PURPOSE": "Retrieves a task by its ID.", "PRE": "task_id is a string.", @@ -23586,8 +23976,8 @@ "name": "get_all_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 297, - "end_line": 305, + "start_line": 301, + "end_line": 309, "tags": { "PURPOSE": "Retrieves all registered tasks.", "PRE": "None.", @@ -23606,8 +23996,8 @@ "name": "get_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 307, - "end_line": 345, + "start_line": 311, + "end_line": 349, "tags": { "PURPOSE": "Retrieves tasks with pagination and optional status filter.", "PRE": "limit and offset are non-negative integers.", @@ -23627,8 +24017,8 @@ "name": "get_task_logs", "type": "Function", "tier": "STANDARD", - "start_line": 347, - "end_line": 377, + "start_line": 351, + "end_line": 381, "tags": { "PURPOSE": "Retrieves logs for a specific task (from memory for running, persistence for completed).", "PRE": "task_id is a string.", @@ -23648,8 +24038,8 @@ "name": "get_task_log_stats", "type": "Function", "tier": "STANDARD", - "start_line": 379, - "end_line": 388, + "start_line": 383, + "end_line": 392, "tags": { "PURPOSE": "Get statistics about logs for a task.", "PRE": "task_id is a valid task ID.", @@ -23669,8 +24059,8 @@ "name": "get_task_log_sources", "type": "Function", "tier": "STANDARD", - "start_line": 390, - "end_line": 399, + "start_line": 394, + "end_line": 403, "tags": { "PURPOSE": "Get unique sources for a task's logs.", "PRE": "task_id is a valid task ID.", @@ -23690,8 +24080,8 @@ "name": "_add_log", "type": "Function", "tier": "STANDARD", - "start_line": 401, - "end_line": 451, + "start_line": 405, + "end_line": 455, "tags": { "PURPOSE": "Adds a log entry to a task buffer and notifies subscribers.", "PRE": "Task exists.", @@ -23710,8 +24100,8 @@ "name": "subscribe_logs", "type": "Function", "tier": "STANDARD", - "start_line": 453, - "end_line": 466, + "start_line": 457, + "end_line": 470, "tags": { "PURPOSE": "Subscribes to real-time logs for a task.", "PRE": "task_id is a string.", @@ -23731,8 +24121,8 @@ "name": "unsubscribe_logs", "type": "Function", "tier": "STANDARD", - "start_line": 468, - "end_line": 481, + "start_line": 472, + "end_line": 485, "tags": { "PURPOSE": "Unsubscribes from real-time logs for a task.", "PRE": "task_id is a string, queue is asyncio.Queue.", @@ -23751,8 +24141,8 @@ "name": "load_persisted_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 483, - "end_line": 493, + "start_line": 487, + "end_line": 497, "tags": { "PURPOSE": "Load persisted tasks using persistence service.", "PRE": "None.", @@ -23770,8 +24160,8 @@ "name": "await_input", "type": "Function", "tier": "STANDARD", - "start_line": 495, - "end_line": 515, + "start_line": 499, + "end_line": 519, "tags": { "PURPOSE": "Transition a task to AWAITING_INPUT state with input request.", "PRE": "Task exists and is in RUNNING state.", @@ -23791,8 +24181,8 @@ "name": "resume_task_with_password", "type": "Function", "tier": "STANDARD", - "start_line": 517, - "end_line": 544, + "start_line": 521, + "end_line": 548, "tags": { "PURPOSE": "Resume a task that is awaiting input with provided passwords.", "PRE": "Task exists and is in AWAITING_INPUT state.", @@ -23812,8 +24202,8 @@ "name": "clear_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 546, - "end_line": 590, + "start_line": 550, + "end_line": 594, "tags": { "PURPOSE": "Clears tasks based on status filter (also deletes associated logs).", "PRE": "status is Optional[TaskStatus].", @@ -23840,8 +24230,8 @@ "name": "sort_key", "type": "Function", "tier": "TRIVIAL", - "start_line": 333, - "end_line": 333, + "start_line": 337, + "end_line": 337, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -23857,14 +24247,8 @@ ], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 1 - } - ], - "score": 0.85 + "issues": [], + "score": 1.0 } }, { @@ -24176,7 +24560,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 115, + "end_line": 123, "tags": { "SEMANTICS": "task, context, plugin, execution, logger", "PURPOSE": "Provides execution context passed to plugins during task execution.", @@ -24195,8 +24579,8 @@ "name": "TaskContext", "type": "Class", "tier": "CRITICAL", - "start_line": 14, - "end_line": 113, + "start_line": 16, + "end_line": 121, "tags": { "SEMANTICS": "context, task, execution, plugin", "PURPOSE": "A container passed to plugin.execute() providing the logger and other task-specific utilities.", @@ -24210,8 +24594,8 @@ "name": "__init__", "type": "Function", "tier": "STANDARD", - "start_line": 32, - "end_line": 54, + "start_line": 34, + "end_line": 57, "tags": { "PURPOSE": "Initialize the TaskContext with task-specific resources.", "PRE": "task_id is a valid task identifier, add_log_fn is callable.", @@ -24230,8 +24614,8 @@ "name": "task_id", "type": "Function", "tier": "STANDARD", - "start_line": 56, - "end_line": 64, + "start_line": 59, + "end_line": 68, "tags": { "PURPOSE": "Get the task ID.", "PRE": "TaskContext must be initialized.", @@ -24242,32 +24626,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 56 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 56 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 56 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "logger", "type": "Function", "tier": "STANDARD", - "start_line": 66, - "end_line": 74, + "start_line": 70, + "end_line": 79, "tags": { "PURPOSE": "Get the TaskLogger instance for this context.", "PRE": "TaskContext must be initialized.", @@ -24278,32 +24646,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "params", "type": "Function", "tier": "STANDARD", - "start_line": 76, - "end_line": 84, + "start_line": 81, + "end_line": 90, "tags": { "PURPOSE": "Get the task parameters.", "PRE": "TaskContext must be initialized.", @@ -24314,32 +24666,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 76 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 76 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 76 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "get_param", "type": "Function", "tier": "STANDARD", - "start_line": 86, - "end_line": 95, + "start_line": 92, + "end_line": 102, "tags": { "PURPOSE": "Get a specific parameter value with optional default.", "PRE": "TaskContext must be initialized.", @@ -24351,32 +24687,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 86 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 86 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 86 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "create_sub_context", "type": "Function", "tier": "STANDARD", - "start_line": 97, - "end_line": 111, + "start_line": 104, + "end_line": 119, "tags": { "PURPOSE": "Create a sub-context with a different default source.", "PRE": "source is a non-empty string.", @@ -24388,24 +24708,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 97 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 97 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 97 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } } ], @@ -24419,8 +24723,8 @@ "name": "execute", "type": "Function", "tier": "TRIVIAL", - "start_line": 25, - "end_line": 25, + "start_line": 27, + "end_line": 27, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -24568,7 +24872,7 @@ "line_number": 82 } ], - "score": 0.7333333333333334 + "score": 0.6 } }, { @@ -24597,7 +24901,7 @@ "line_number": 97 } ], - "score": 0.7333333333333334 + "score": 0.6 } } ], @@ -24610,7 +24914,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -24647,12 +24951,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 22 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -24672,12 +24976,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 50 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -24697,12 +25001,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 76 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -24722,12 +25026,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 106 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -24747,12 +25051,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 125 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -24772,12 +25076,12 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 170 } ], - "score": 0.9 + "score": 0.85 } }, { @@ -25542,7 +25846,7 @@ "line_number": 21 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -25570,7 +25874,7 @@ "line_number": 37 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -25646,7 +25950,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -26093,7 +26397,7 @@ "line_number": 25 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -26173,7 +26477,7 @@ "line_number": 76 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -26204,7 +26508,7 @@ "line_number": 88 } ], - "score": 0.7333333333333334 + "score": 0.6 } }, { @@ -26384,7 +26688,7 @@ "line_number": 283 } ], - "score": 0.39999999999999997 + "score": 0.10000000000000003 } }, { @@ -26436,7 +26740,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -26557,7 +26861,7 @@ "line_number": 87 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -26595,7 +26899,7 @@ "line_number": 121 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -26639,7 +26943,7 @@ "line_number": 144 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -26756,7 +27060,7 @@ "line_number": 264 } ], - "score": 0.7333333333333334 + "score": 0.6 } }, { @@ -26794,7 +27098,7 @@ "line_number": 280 } ], - "score": 0.4666666666666666 + "score": 0.2 } }, { @@ -26832,7 +27136,7 @@ "line_number": 291 } ], - "score": 0.4666666666666666 + "score": 0.2 } } ], @@ -26905,7 +27209,7 @@ "line_number": 27 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -26933,7 +27237,7 @@ "line_number": 34 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -26961,7 +27265,7 @@ "line_number": 46 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -26989,7 +27293,7 @@ "line_number": 62 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27017,7 +27321,7 @@ "line_number": 72 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27045,7 +27349,7 @@ "line_number": 84 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27073,7 +27377,7 @@ "line_number": 92 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27101,7 +27405,7 @@ "line_number": 99 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27129,7 +27433,7 @@ "line_number": 107 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27157,7 +27461,7 @@ "line_number": 116 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27185,7 +27489,7 @@ "line_number": 129 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -27213,7 +27517,7 @@ "line_number": 136 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -27228,7 +27532,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 1760, + "end_line": 1799, "tags": { "TIER": "STANDARD", "SEMANTICS": "api, assistant, chat, command, confirmation", @@ -27344,17 +27648,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 126 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 126 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27374,17 +27678,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 157 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 157 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27404,17 +27708,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 192 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 192 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27434,17 +27738,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 204 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 204 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27464,17 +27768,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 227 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 227 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27494,17 +27798,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 252 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 252 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27524,17 +27828,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 271 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 271 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27554,17 +27858,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 296 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 296 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27584,17 +27888,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 315 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 315 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27614,17 +27918,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 344 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 344 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27644,17 +27948,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 381 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 381 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27674,17 +27978,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 393 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 393 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27704,17 +28008,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 406 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 406 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27734,17 +28038,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 419 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 419 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27764,17 +28068,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 436 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 436 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27794,17 +28098,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 453 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 453 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27824,17 +28128,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 488 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 488 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -27854,25 +28158,55 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 509 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 509 } ], - "score": 0.8 + "score": 0.7 + } + }, + { + "name": "_resolve_dashboard_id_entity", + "type": "Function", + "tier": "STANDARD", + "start_line": 551, + "end_line": 579, + "tags": { + "PURPOSE": "Resolve dashboard id from intent entities using numeric id or dashboard_ref fallback.", + "PRE": "entities may contain dashboard_id as int/str and optional dashboard_ref.", + "POST": "Returns resolved dashboard id or None when ambiguous/unresolvable." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [ + { + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 551 + }, + { + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 551 + } + ], + "score": 0.7 } }, { "name": "_parse_command", "type": "Function", "tier": "STANDARD", - "start_line": 551, - "end_line": 723, + "start_line": 582, + "end_line": 754, "tags": { "PURPOSE": "Deterministically parse RU/EN command text into intent payload.", "PRE": "message contains raw user text and config manager resolves environments.", @@ -27884,25 +28218,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 551 + "line_number": 582 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 551 + "line_number": 582 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_check_any_permission", "type": "Function", "tier": "STANDARD", - "start_line": 726, - "end_line": 740, + "start_line": 757, + "end_line": 771, "tags": { "PURPOSE": "Validate user against alternative permission checks (logical OR).", "PRE": "checks list contains resource-action tuples.", @@ -27914,25 +28248,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 726 + "line_number": 757 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 726 + "line_number": 757 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_has_any_permission", "type": "Function", "tier": "STANDARD", - "start_line": 743, - "end_line": 753, + "start_line": 774, + "end_line": 784, "tags": { "PURPOSE": "Check whether user has at least one permission tuple from the provided list.", "PRE": "current_user and checks list are valid.", @@ -27944,25 +28278,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 743 + "line_number": 774 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 743 + "line_number": 774 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_build_tool_catalog", "type": "Function", "tier": "STANDARD", - "start_line": 756, - "end_line": 867, + "start_line": 787, + "end_line": 898, "tags": { "PURPOSE": "Build current-user tool catalog for LLM planner with operation contracts and defaults.", "PRE": "current_user is authenticated; config/db are available.", @@ -27974,25 +28308,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 756 + "line_number": 787 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 756 + "line_number": 787 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_coerce_intent_entities", "type": "Function", "tier": "STANDARD", - "start_line": 870, - "end_line": 887, + "start_line": 901, + "end_line": 918, "tags": { "PURPOSE": "Normalize intent entity value types from LLM output to route-compatible values.", "PRE": "intent contains entities dict or missing entities.", @@ -28004,25 +28338,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 870 + "line_number": 901 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 870 + "line_number": 901 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_clarification_text_for_intent", "type": "Function", "tier": "STANDARD", - "start_line": 890, - "end_line": 910, + "start_line": 921, + "end_line": 941, "tags": { "PURPOSE": "Convert technical missing-parameter errors into user-facing clarification prompts.", "PRE": "state was classified as needs_clarification for current intent/error combination.", @@ -28034,25 +28368,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 890 + "line_number": 921 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 890 + "line_number": 921 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_plan_intent_with_llm", "type": "Function", "tier": "STANDARD", - "start_line": 913, - "end_line": 1018, + "start_line": 944, + "end_line": 1050, "tags": { "PURPOSE": "Use active LLM provider to select best tool/operation from dynamic catalog.", "PRE": "tools list contains allowed operations for current user.", @@ -28064,25 +28398,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 913 + "line_number": 944 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 913 + "line_number": 944 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_authorize_intent", "type": "Function", "tier": "STANDARD", - "start_line": 1021, - "end_line": 1029, + "start_line": 1053, + "end_line": 1061, "tags": { "PURPOSE": "Validate user permissions for parsed intent before confirmation/dispatch.", "PRE": "intent.operation is present for known assistant command domains.", @@ -28094,25 +28428,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 1021 + "line_number": 1053 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 1021 + "line_number": 1053 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "_dispatch_intent", "type": "Function", "tier": "STANDARD", - "start_line": 1032, - "end_line": 1269, + "start_line": 1064, + "end_line": 1301, "tags": { "PURPOSE": "Execute parsed assistant intent via existing task/plugin/git services.", "PRE": "intent operation is known and actor permissions are validated per operation.", @@ -28124,25 +28458,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 1032 + "line_number": 1064 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 1032 + "line_number": 1064 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "send_message", "type": "Function", "tier": "STANDARD", - "start_line": 1273, - "end_line": 1430, + "start_line": 1305, + "end_line": 1469, "tags": { "PURPOSE": "Parse assistant command, enforce safety gates, and dispatch executable intent.", "PRE": "Authenticated user is available and message text is non-empty.", @@ -28161,8 +28495,8 @@ "name": "confirm_operation", "type": "Function", "tier": "STANDARD", - "start_line": 1434, - "end_line": 1496, + "start_line": 1473, + "end_line": 1535, "tags": { "PURPOSE": "Execute previously requested risky operation after explicit user confirmation.", "PRE": "confirmation_id exists, belongs to current user, is pending, and not expired.", @@ -28181,8 +28515,8 @@ "name": "cancel_operation", "type": "Function", "tier": "STANDARD", - "start_line": 1500, - "end_line": 1553, + "start_line": 1539, + "end_line": 1592, "tags": { "PURPOSE": "Cancel pending risky operation and mark confirmation token as cancelled.", "PRE": "confirmation_id exists, belongs to current user, and is still pending.", @@ -28201,8 +28535,8 @@ "name": "list_conversations", "type": "Function", "tier": "STANDARD", - "start_line": 1556, - "end_line": 1640, + "start_line": 1595, + "end_line": 1679, "tags": { "PURPOSE": "Return paginated conversation list for current user with archived flag and last message preview.", "PRE": "Authenticated user context and valid pagination params.", @@ -28221,8 +28555,8 @@ "name": "get_history", "type": "Function", "tier": "STANDARD", - "start_line": 1644, - "end_line": 1715, + "start_line": 1683, + "end_line": 1754, "tags": { "PURPOSE": "Retrieve paginated assistant conversation history for current user.", "PRE": "Authenticated user is available and page params are valid.", @@ -28241,8 +28575,8 @@ "name": "get_assistant_audit", "type": "Function", "tier": "STANDARD", - "start_line": 1719, - "end_line": 1758, + "start_line": 1758, + "end_line": 1797, "tags": { "PURPOSE": "Return assistant audit decisions for current user from persistent and in-memory stores.", "PRE": "User has tasks:READ permission.", @@ -28402,7 +28736,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 131, + "end_line": 132, "tags": { "TIER": "CRITICAL", "SEMANTICS": "api, reports, list, detail, pagination, filters", @@ -28426,7 +28760,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 26, - "end_line": 56, + "end_line": 57, "tags": { "PURPOSE": "Parse comma-separated query value into enum list.", "PRE": "raw may be None/empty or comma-separated values.", @@ -28438,27 +28772,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 26 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 26 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "list_reports", "type": "Function", "tier": "STANDARD", - "start_line": 59, - "end_line": 107, + "start_line": 60, + "end_line": 108, "tags": { "PURPOSE": "Return paginated unified reports list.", "PRE": "authenticated/authorized request and validated query params.", @@ -28476,8 +28799,8 @@ "name": "get_report_detail", "type": "Function", "tier": "STANDARD", - "start_line": 110, - "end_line": 129, + "start_line": 111, + "end_line": 130, "tags": { "PURPOSE": "Return one normalized report detail with diagnostics and next actions.", "PRE": "authenticated/authorized request and existing report_id.", @@ -28550,7 +28873,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 327, + "end_line": 331, "tags": { "TIER": "STANDARD", "SEMANTICS": "api, router, tasks, create, list, get, logs", @@ -28565,7 +28888,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 41, - "end_line": 100, + "end_line": 104, "tags": { "PURPOSE": "Create and start a new task for a given plugin.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28585,8 +28908,8 @@ "name": "list_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 103, - "end_line": 142, + "start_line": 107, + "end_line": 146, "tags": { "PURPOSE": "Retrieve a list of tasks with pagination and optional status filter.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28606,8 +28929,8 @@ "name": "get_task", "type": "Function", "tier": "STANDARD", - "start_line": 145, - "end_line": 165, + "start_line": 149, + "end_line": 169, "tags": { "PURPOSE": "Retrieve the details of a specific task.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28627,8 +28950,8 @@ "name": "get_task_logs", "type": "Function", "tier": "CRITICAL", - "start_line": 168, - "end_line": 208, + "start_line": 172, + "end_line": 212, "tags": { "PURPOSE": "Retrieve logs for a specific task with optional filtering.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28649,8 +28972,8 @@ "name": "get_task_log_stats", "type": "Function", "tier": "STANDARD", - "start_line": 211, - "end_line": 231, + "start_line": 215, + "end_line": 235, "tags": { "PURPOSE": "Get statistics about logs for a task (counts by level and source).", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28670,8 +28993,8 @@ "name": "get_task_log_sources", "type": "Function", "tier": "STANDARD", - "start_line": 234, - "end_line": 254, + "start_line": 238, + "end_line": 258, "tags": { "PURPOSE": "Get unique sources for a task's logs.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28691,8 +29014,8 @@ "name": "resolve_task", "type": "Function", "tier": "STANDARD", - "start_line": 257, - "end_line": 280, + "start_line": 261, + "end_line": 284, "tags": { "PURPOSE": "Resolve a task that is awaiting mapping.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28712,8 +29035,8 @@ "name": "resume_task", "type": "Function", "tier": "STANDARD", - "start_line": 283, - "end_line": 306, + "start_line": 287, + "end_line": 310, "tags": { "PURPOSE": "Resume a task that is awaiting input (e.g., passwords).", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -28733,8 +29056,8 @@ "name": "clear_tasks", "type": "Function", "tier": "STANDARD", - "start_line": 309, - "end_line": 326, + "start_line": 313, + "end_line": 330, "tags": { "PURPOSE": "Clear tasks matching the status filter.", "PARAM": "task_manager (TaskManager) - The task manager instance.", @@ -29147,7 +29470,7 @@ "line_number": 16 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 16 }, @@ -29157,12 +29480,12 @@ "line_number": 16 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 16 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29187,7 +29510,7 @@ "line_number": 64 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 64 }, @@ -29197,12 +29520,12 @@ "line_number": 64 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 64 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29227,7 +29550,7 @@ "line_number": 102 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 102 }, @@ -29237,12 +29560,12 @@ "line_number": 102 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 102 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29267,7 +29590,7 @@ "line_number": 122 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 122 }, @@ -29277,12 +29600,12 @@ "line_number": 122 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 122 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29315,7 +29638,7 @@ "line_number": 149 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 149 }, @@ -29335,7 +29658,7 @@ "line_number": 149 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 149 } @@ -29373,7 +29696,7 @@ "line_number": 205 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 205 }, @@ -29393,7 +29716,7 @@ "line_number": 205 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 205 } @@ -29423,7 +29746,7 @@ "line_number": 220 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 220 }, @@ -29433,12 +29756,12 @@ "line_number": 220 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 220 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29463,7 +29786,7 @@ "line_number": 262 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 262 }, @@ -29473,12 +29796,12 @@ "line_number": 262 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 262 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29503,7 +29826,7 @@ "line_number": 286 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 286 }, @@ -29513,12 +29836,12 @@ "line_number": 286 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 286 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29543,7 +29866,7 @@ "line_number": 325 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 325 }, @@ -29553,12 +29876,12 @@ "line_number": 325 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 325 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -29607,7 +29930,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -29954,17 +30277,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 18 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 18 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -29989,7 +30312,7 @@ "line_number": 63 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 63 }, @@ -29999,12 +30322,12 @@ "line_number": 63 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 63 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -30029,7 +30352,7 @@ "line_number": 83 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 83 }, @@ -30039,12 +30362,12 @@ "line_number": 83 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 83 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -30069,7 +30392,7 @@ "line_number": 110 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 110 }, @@ -30079,12 +30402,12 @@ "line_number": 110 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 110 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -30109,7 +30432,7 @@ "line_number": 149 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 149 }, @@ -30119,12 +30442,12 @@ "line_number": 149 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 149 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -30149,7 +30472,7 @@ "line_number": 173 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 173 }, @@ -30159,12 +30482,12 @@ "line_number": 173 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 173 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } } ], @@ -30536,17 +30859,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 212 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 212 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -30566,17 +30889,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 248 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 248 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -30596,17 +30919,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 285 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 285 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31183,17 +31506,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 201 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 201 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31213,17 +31536,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 223 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 223 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31243,17 +31566,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 244 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 244 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31273,17 +31596,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 265 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 265 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31303,17 +31626,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 302 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 302 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31333,17 +31656,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 349 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 349 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31363,17 +31686,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 395 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 395 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31393,17 +31716,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 420 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 420 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31423,17 +31746,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 470 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 470 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31453,17 +31776,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 511 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 511 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -31877,7 +32200,7 @@ "line_number": 15 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -31931,7 +32254,7 @@ "line_number": 16 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -31959,7 +32282,7 @@ "line_number": 31 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -32282,7 +32605,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 128, + "end_line": 149, "tags": { "TIER": "CRITICAL", "SEMANTICS": "reports, models, pydantic, normalization, pagination", @@ -32300,205 +32623,149 @@ { "name": "TaskType", "type": "Class", - "tier": "STANDARD", + "tier": "CRITICAL", "start_line": 18, - "end_line": 26, + "end_line": 29, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "Must contain valid generic task type mappings.", + "SEMANTICS": "enum, type, task", "PURPOSE": "Supported normalized task report types." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 18 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 18 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "ReportStatus", "type": "Class", - "tier": "STANDARD", - "start_line": 29, - "end_line": 36, + "tier": "CRITICAL", + "start_line": 32, + "end_line": 42, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "TaskStatus enum mapping logic holds.", + "SEMANTICS": "enum, status, task", "PURPOSE": "Supported normalized report status values." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 29 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 29 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "ErrorContext", "type": "Class", - "tier": "STANDARD", - "start_line": 39, - "end_line": 45, + "tier": "CRITICAL", + "start_line": 45, + "end_line": 54, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "The properties accurately describe error state.", + "SEMANTICS": "error, context, payload", "PURPOSE": "Error and recovery context for failed/partial reports." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "TaskReport", "type": "Class", - "tier": "STANDARD", - "start_line": 48, - "end_line": 68, + "tier": "CRITICAL", + "start_line": 57, + "end_line": 80, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "Must represent canonical task record attributes.", + "SEMANTICS": "report, model, summary", "PURPOSE": "Canonical normalized report envelope for one task execution." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 48 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 48 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "ReportQuery", "type": "Class", - "tier": "STANDARD", - "start_line": 71, - "end_line": 104, + "tier": "CRITICAL", + "start_line": 83, + "end_line": 119, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "Time and pagination queries are mutually consistent.", + "SEMANTICS": "query, filter, search", "PURPOSE": "Query object for server-side report filtering, sorting, and pagination." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 71 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 71 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "ReportCollection", "type": "Class", - "tier": "STANDARD", - "start_line": 107, - "end_line": 116, + "tier": "CRITICAL", + "start_line": 122, + "end_line": 134, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "Represents paginated data correctly.", + "SEMANTICS": "collection, pagination", "PURPOSE": "Paginated collection of normalized task reports." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 107 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 107 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "ReportDetailView", "type": "Class", - "tier": "STANDARD", - "start_line": 119, - "end_line": 126, + "tier": "CRITICAL", + "start_line": 137, + "end_line": 147, "tags": { + "TIER": "CRITICAL", + "INVARIANT": "Incorporates a report and logs correctly.", + "SEMANTICS": "view, detail, logs", "PURPOSE": "Detailed report representation including diagnostics and recovery actions." }, "relations": [], "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - }, - { - "message": "Missing Mandatory Tag: @TIER (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 119 - } - ], - "score": 0.7000000000000001 + "issues": [], + "score": 1.0 } }, { "name": "_non_empty_str", "type": "Function", "tier": "TRIVIAL", - "start_line": 64, - "end_line": 64, + "start_line": 76, + "end_line": 76, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -32515,8 +32782,8 @@ "name": "_validate_sort_by", "type": "Function", "tier": "TRIVIAL", - "start_line": 86, - "end_line": 86, + "start_line": 101, + "end_line": 101, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -32533,8 +32800,8 @@ "name": "_validate_sort_order", "type": "Function", "tier": "TRIVIAL", - "start_line": 94, - "end_line": 94, + "start_line": 109, + "end_line": 109, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -32551,8 +32818,8 @@ "name": "_validate_time_range", "type": "Function", "tier": "TRIVIAL", - "start_line": 100, - "end_line": 100, + "start_line": 115, + "end_line": 115, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -32837,7 +33104,7 @@ "line_number": 19 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 19 }, @@ -32847,12 +33114,12 @@ "line_number": 19 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 19 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -32919,7 +33186,7 @@ "line_number": 46 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -32956,7 +33223,7 @@ "line_number": 64 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -32989,7 +33256,7 @@ "line_number": 79 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } }, { @@ -33022,7 +33289,7 @@ "line_number": 92 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -33243,22 +33510,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 153 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 153 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 153 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -33280,22 +33547,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 194 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 194 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 194 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -33317,22 +33584,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 228 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 228 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 228 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -33354,22 +33621,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 239 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 239 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 239 } ], - "score": 0.7 + "score": 0.55 } } ], @@ -33387,7 +33654,7 @@ "line_number": 19 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -33402,7 +33669,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 180, + "end_line": 200, "tags": { "TIER": "STANDARD", "SEMANTICS": "llm, prompts, templates, settings", @@ -33489,17 +33756,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 85 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 85 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -33507,7 +33774,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 129, - "end_line": 148, + "end_line": 168, "tags": { "TIER": "STANDARD", "PURPOSE": "Heuristically determine whether model supports image input required for dashboard validation.", @@ -33520,25 +33787,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 129 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 129 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "resolve_bound_provider_id", "type": "Function", "tier": "STANDARD", - "start_line": 151, - "end_line": 164, + "start_line": 171, + "end_line": 184, "tags": { "TIER": "STANDARD", "PURPOSE": "Resolve provider id configured for a task binding with fallback to default provider.", @@ -33551,25 +33818,25 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 151 + "line_number": 171 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 151 + "line_number": 171 } ], - "score": 0.8 + "score": 0.7 } }, { "name": "render_prompt", "type": "Function", "tier": "STANDARD", - "start_line": 167, - "end_line": 177, + "start_line": 187, + "end_line": 197, "tags": { "TIER": "STANDARD", "PURPOSE": "Render prompt template using deterministic placeholder replacement with graceful fallback.", @@ -33582,17 +33849,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 167 + "line_number": 187 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 167 + "line_number": 187 } ], - "score": 0.8 + "score": 0.7 } } ], @@ -33607,7 +33874,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 169, + "end_line": 171, "tags": { "TIER": "STANDARD", "SEMANTICS": "service, llm, provider, encryption", @@ -33630,7 +33897,7 @@ "type": "Class", "tier": "CRITICAL", "start_line": 17, - "end_line": 46, + "end_line": 48, "tags": { "TIER": "CRITICAL", "PURPOSE": "Handles encryption and decryption of sensitive data like API keys.", @@ -33662,7 +33929,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 31, - "end_line": 37, + "end_line": 38, "tags": { "PURPOSE": "Encrypt a plaintext string.", "PRE": "data must be a non-empty string.", @@ -33672,32 +33939,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 31 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 31 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 31 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "EncryptionManager.decrypt", "type": "Function", "tier": "STANDARD", - "start_line": 39, - "end_line": 45, + "start_line": 40, + "end_line": 47, "tags": { "PURPOSE": "Decrypt an encrypted string.", "PRE": "encrypted_data must be a valid Fernet-encrypted string.", @@ -33707,24 +33958,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } } ], @@ -33738,8 +33973,8 @@ "name": "LLMProviderService", "type": "Class", "tier": "STANDARD", - "start_line": 48, - "end_line": 167, + "start_line": 50, + "end_line": 169, "tags": { "TIER": "STANDARD", "PURPOSE": "Service to manage LLM provider lifecycle." @@ -33750,8 +33985,8 @@ "name": "LLMProviderService.__init__", "type": "Function", "tier": "STANDARD", - "start_line": 52, - "end_line": 59, + "start_line": 54, + "end_line": 61, "tags": { "PURPOSE": "Initialize the service with database session.", "PRE": "db must be a valid SQLAlchemy Session.", @@ -33769,8 +34004,8 @@ "name": "get_all_providers", "type": "Function", "tier": "STANDARD", - "start_line": 61, - "end_line": 69, + "start_line": 63, + "end_line": 71, "tags": { "TIER": "STANDARD", "PURPOSE": "Returns all configured LLM providers.", @@ -33789,8 +34024,8 @@ "name": "get_provider", "type": "Function", "tier": "STANDARD", - "start_line": 71, - "end_line": 79, + "start_line": 73, + "end_line": 81, "tags": { "TIER": "STANDARD", "PURPOSE": "Returns a single LLM provider by ID.", @@ -33809,8 +34044,8 @@ "name": "create_provider", "type": "Function", "tier": "STANDARD", - "start_line": 81, - "end_line": 101, + "start_line": 83, + "end_line": 103, "tags": { "TIER": "STANDARD", "PURPOSE": "Creates a new LLM provider with encrypted API key.", @@ -33829,8 +34064,8 @@ "name": "update_provider", "type": "Function", "tier": "STANDARD", - "start_line": 103, - "end_line": 126, + "start_line": 105, + "end_line": 128, "tags": { "TIER": "STANDARD", "PURPOSE": "Updates an existing LLM provider.", @@ -33849,8 +34084,8 @@ "name": "delete_provider", "type": "Function", "tier": "STANDARD", - "start_line": 128, - "end_line": 141, + "start_line": 130, + "end_line": 143, "tags": { "TIER": "STANDARD", "PURPOSE": "Deletes an LLM provider.", @@ -33869,8 +34104,8 @@ "name": "get_decrypted_api_key", "type": "Function", "tier": "STANDARD", - "start_line": 143, - "end_line": 165, + "start_line": 145, + "end_line": 167, "tags": { "TIER": "STANDARD", "PURPOSE": "Returns the decrypted API key for a provider.", @@ -33932,8 +34167,8 @@ "name": "decrypt", "type": "Function", "tier": "TRIVIAL", - "start_line": 43, - "end_line": 43, + "start_line": 44, + "end_line": 44, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -33950,8 +34185,8 @@ "name": "__init__", "type": "Function", "tier": "TRIVIAL", - "start_line": 56, - "end_line": 56, + "start_line": 58, + "end_line": 58, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -34100,7 +34335,7 @@ "line_number": 25 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -34182,7 +34417,7 @@ "line_number": 22 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -34195,7 +34430,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -34533,7 +34768,7 @@ "line_number": 21 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -34546,7 +34781,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -34660,7 +34895,7 @@ "line_number": 18 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -34673,7 +34908,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -34681,7 +34916,7 @@ "type": "Module", "tier": "STANDARD", "start_line": 1, - "end_line": 109, + "end_line": 110, "tags": { "TIER": "STANDARD", "SEMANTICS": "tests, llm, prompts, templates, settings", @@ -34714,17 +34949,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 20 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 20 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -34745,17 +34980,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 41 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 41 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -34776,17 +35011,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 56 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 56 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -34794,7 +35029,7 @@ "type": "Function", "tier": "STANDARD", "start_line": 71, - "end_line": 78, + "end_line": 79, "tags": { "TIER": "STANDARD", "PURPOSE": "Ensure multimodal model detection recognizes common vision-capable model names." @@ -34815,7 +35050,7 @@ "line_number": 71 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 71 }, @@ -34830,20 +35065,20 @@ "line_number": 71 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 71 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { "name": "test_resolve_bound_provider_id_prefers_binding_then_default", "type": "Function", "tier": "STANDARD", - "start_line": 81, - "end_line": 91, + "start_line": 82, + "end_line": 92, "tags": { "TIER": "STANDARD", "PURPOSE": "Verify provider binding resolution priority." @@ -34856,43 +35091,43 @@ { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 }, { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 81 + "line_number": 82 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { "name": "test_normalize_llm_settings_keeps_assistant_planner_settings", "type": "Function", "tier": "STANDARD", - "start_line": 94, - "end_line": 106, + "start_line": 95, + "end_line": 107, "tags": { "TIER": "STANDARD", "PURPOSE": "Ensure assistant planner provider/model fields are preserved and normalized." @@ -34905,35 +35140,35 @@ { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 }, { "message": "Missing Mandatory Tag: @PRE (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 }, { "message": "Missing Mandatory Tag: @POST (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", - "line_number": 94 + "line_number": 95 } ], - "score": 0.26666666666666655 + "score": 0.0 } } ], @@ -34985,17 +35220,17 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -35020,7 +35255,7 @@ "line_number": 57 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 57 }, @@ -35030,12 +35265,12 @@ "line_number": 57 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 57 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -35060,7 +35295,7 @@ "line_number": 97 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 97 }, @@ -35070,12 +35305,12 @@ "line_number": 97 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 97 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -35100,7 +35335,7 @@ "line_number": 134 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 134 }, @@ -35110,12 +35345,12 @@ "line_number": 134 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 134 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -35140,7 +35375,7 @@ "line_number": 154 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 154 }, @@ -35150,12 +35385,12 @@ "line_number": 154 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 154 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -35180,7 +35415,7 @@ "line_number": 186 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 186 }, @@ -35190,12 +35425,12 @@ "line_number": 186 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 186 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } } ], @@ -35210,7 +35445,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 152, + "end_line": 157, "tags": { "TIER": "CRITICAL", "SEMANTICS": "reports, normalization, tasks, fallback", @@ -35237,8 +35472,8 @@ "name": "status_to_report_status", "type": "Function", "tier": "STANDARD", - "start_line": 21, - "end_line": 36, + "start_line": 22, + "end_line": 38, "tags": { "PURPOSE": "Normalize internal task status to canonical report status.", "PRE": "status may be known or unknown string/enum value.", @@ -35250,27 +35485,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 21 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 21 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "build_summary", "type": "Function", "tier": "STANDARD", - "start_line": 39, - "end_line": 60, + "start_line": 41, + "end_line": 63, "tags": { "PURPOSE": "Build deterministic user-facing summary from task payload and status.", "PRE": "report_status is canonical; plugin_id may be unknown.", @@ -35282,27 +35506,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "extract_error_context", "type": "Function", "tier": "STANDARD", - "start_line": 63, - "end_line": 103, + "start_line": 66, + "end_line": 107, "tags": { "PURPOSE": "Extract normalized error context and next actions for failed/partial reports.", "PRE": "task is a valid Task object.", @@ -35314,27 +35527,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 63 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 63 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "normalize_task_report", "type": "Function", "tier": "STANDARD", - "start_line": 106, - "end_line": 150, + "start_line": 110, + "end_line": 155, "tags": { "PURPOSE": "Convert one Task to canonical TaskReport envelope.", "PRE": "task has valid id and plugin_id fields.", @@ -35346,19 +35548,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 106 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 106 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -35373,7 +35564,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 91, + "end_line": 94, "tags": { "TIER": "CRITICAL", "SEMANTICS": "reports, type_profiles, normalization, fallback", @@ -35392,8 +35583,8 @@ "name": "PLUGIN_TO_TASK_TYPE", "type": "Data", "tier": "STANDARD", - "start_line": 15, - "end_line": 23, + "start_line": 16, + "end_line": 24, "tags": { "PURPOSE": "Maps plugin identifiers to normalized report task types." }, @@ -35409,8 +35600,8 @@ "name": "TASK_TYPE_PROFILES", "type": "Data", "tier": "STANDARD", - "start_line": 25, - "end_line": 64, + "start_line": 26, + "end_line": 65, "tags": { "PURPOSE": "Profile metadata registry for each normalized task type." }, @@ -35426,8 +35617,8 @@ "name": "resolve_task_type", "type": "Function", "tier": "STANDARD", - "start_line": 67, - "end_line": 78, + "start_line": 68, + "end_line": 80, "tags": { "PURPOSE": "Resolve canonical task type from plugin/task identifier with guaranteed fallback.", "PRE": "plugin_id may be None or unknown.", @@ -35439,27 +35630,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 67 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 67 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } }, { "name": "get_type_profile", "type": "Function", "tier": "STANDARD", - "start_line": 81, - "end_line": 89, + "start_line": 83, + "end_line": 92, "tags": { "PURPOSE": "Return deterministic profile metadata for a task type.", "PRE": "task_type may be known or unknown.", @@ -35471,19 +35651,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 81 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 81 - } - ], - "score": 0.8 + "issues": [], + "score": 1.0 } } ], @@ -35498,7 +35667,7 @@ "type": "Module", "tier": "CRITICAL", "start_line": 1, - "end_line": 195, + "end_line": 205, "tags": { "TIER": "CRITICAL", "SEMANTICS": "reports, service, aggregation, filtering, pagination, detail", @@ -35525,8 +35694,8 @@ "name": "ReportsService", "type": "Class", "tier": "CRITICAL", - "start_line": 21, - "end_line": 193, + "start_line": 23, + "end_line": 203, "tags": { "PURPOSE": "Service layer for list/detail report retrieval and normalization.", "TIER": "CRITICAL", @@ -35540,8 +35709,8 @@ "name": "__init__", "type": "Function", "tier": "CRITICAL", - "start_line": 28, - "end_line": 37, + "start_line": 30, + "end_line": 40, "tags": { "TIER": "CRITICAL", "PURPOSE": "Initialize service with TaskManager dependency.", @@ -35562,8 +35731,8 @@ "name": "_load_normalized_reports", "type": "Function", "tier": "STANDARD", - "start_line": 39, - "end_line": 49, + "start_line": 42, + "end_line": 53, "tags": { "PURPOSE": "Build normalized reports from all available tasks.", "PRE": "Task manager returns iterable task history records.", @@ -35575,32 +35744,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 39 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_to_utc_datetime", "type": "Function", "tier": "STANDARD", - "start_line": 51, - "end_line": 64, + "start_line": 55, + "end_line": 69, "tags": { "PURPOSE": "Normalize naive/aware datetime values to UTC-aware datetime for safe comparisons.", "PRE": "value is either datetime or None.", @@ -35613,32 +35766,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 51 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 51 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 51 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_datetime_sort_key", "type": "Function", "tier": "STANDARD", - "start_line": 66, - "end_line": 78, + "start_line": 71, + "end_line": 84, "tags": { "PURPOSE": "Produce stable numeric sort key for report timestamps.", "PRE": "report contains updated_at datetime.", @@ -35651,32 +35788,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 66 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_matches_query", "type": "Function", "tier": "STANDARD", - "start_line": 80, - "end_line": 107, + "start_line": 86, + "end_line": 114, "tags": { "PURPOSE": "Apply query filtering to a report.", "PRE": "report and query are normalized schema instances.", @@ -35689,32 +35810,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 80 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 80 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 80 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "_sort_reports", "type": "Function", "tier": "STANDARD", - "start_line": 109, - "end_line": 128, + "start_line": 116, + "end_line": 136, "tags": { "PURPOSE": "Sort reports deterministically according to query settings.", "PRE": "reports contains only TaskReport items.", @@ -35727,32 +35832,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 109 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 109 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 109 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "list_reports", "type": "Function", "tier": "STANDARD", - "start_line": 130, - "end_line": 155, + "start_line": 138, + "end_line": 164, "tags": { "PURPOSE": "Return filtered, sorted, paginated report collection.", "PRE": "query has passed schema validation.", @@ -35764,32 +35853,16 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 130 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 130 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 130 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } }, { "name": "get_report_detail", "type": "Function", "tier": "STANDARD", - "start_line": 157, - "end_line": 192, + "start_line": 166, + "end_line": 202, "tags": { "PURPOSE": "Return one normalized report with timeline/diagnostics/next actions.", "PRE": "report_id exists in normalized report set.", @@ -35801,24 +35874,8 @@ "children": [], "compliance": { "valid": true, - "issues": [ - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 157 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 157 - }, - { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", - "severity": "WARNING", - "line_number": 157 - } - ], - "score": 0.7 + "issues": [], + "score": 1.0 } } ], @@ -36065,7 +36122,7 @@ "line_number": 81 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -36123,7 +36180,7 @@ "line_number": 29 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -36136,7 +36193,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -36296,7 +36353,7 @@ "line_number": 69 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -36397,7 +36454,7 @@ "line_number": 17 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -36410,7 +36467,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -36570,7 +36627,7 @@ "line_number": 70 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -36650,7 +36707,7 @@ "line_number": 18 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -36663,7 +36720,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -36823,7 +36880,7 @@ "line_number": 72 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -36882,7 +36939,7 @@ "line_number": 20 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -36895,7 +36952,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -37086,7 +37143,7 @@ "line_number": 105 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -37253,7 +37310,7 @@ "line_number": 30 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -37266,7 +37323,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -37436,7 +37493,7 @@ "line_number": 75 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -37512,7 +37569,7 @@ "line_number": 23 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -37525,7 +37582,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -37555,7 +37612,7 @@ "line_number": 12 } ], - "score": 0.6666666666666667 + "score": 0.49999999999999994 } }, { @@ -37585,12 +37642,12 @@ "line_number": 44 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 44 } ], - "score": 0.5666666666666667 + "score": 0.35000000000000003 } }, { @@ -37651,7 +37708,7 @@ "line_number": 12 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37674,7 +37731,7 @@ "line_number": 20 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37697,7 +37754,7 @@ "line_number": 32 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37720,7 +37777,7 @@ "line_number": 40 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37743,7 +37800,7 @@ "line_number": 48 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37793,7 +37850,7 @@ "line_number": 33 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -37843,7 +37900,7 @@ "line_number": 250 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -38119,7 +38176,7 @@ "line_number": 28 } ], - "score": 0.7333333333333334 + "score": 0.6 } }, { @@ -38153,7 +38210,7 @@ "line_number": 25 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -38161,7 +38218,7 @@ "type": "Class", "tier": "STANDARD", "start_line": 417, - "end_line": 618, + "end_line": 653, "tags": { "PURPOSE": "Wrapper for LLM provider APIs." }, @@ -38193,15 +38250,45 @@ "line_number": 420 } ], - "score": 0.7333333333333334 + "score": 0.6 + } + }, + { + "name": "LLMClient._supports_json_response_format", + "type": "Function", + "tier": "STANDARD", + "start_line": 440, + "end_line": 458, + "tags": { + "PURPOSE": "Detect whether provider/model is likely compatible with response_format=json_object.", + "PRE": "Client initialized with base_url and default_model.", + "POST": "Returns False for known-incompatible combinations to avoid avoidable 400 errors." + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [ + { + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 440 + }, + { + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", + "severity": "WARNING", + "line_number": 440 + } + ], + "score": 0.7 } }, { "name": "LLMClient.get_json_completion", "type": "Function", "tier": "STANDARD", - "start_line": 440, - "end_line": 545, + "start_line": 460, + "end_line": 580, "tags": { "PURPOSE": "Helper to handle LLM calls with JSON mode and fallback parsing.", "PRE": "messages is a list of valid message dictionaries.", @@ -38220,8 +38307,8 @@ "name": "LLMClient.analyze_dashboard", "type": "Function", "tier": "STANDARD", - "start_line": 547, - "end_line": 617, + "start_line": 582, + "end_line": 652, "tags": { "PURPOSE": "Sends dashboard data (screenshot + logs) to LLM for health analysis.", "PRE": "screenshot_path exists, logs is a list of strings.", @@ -38246,7 +38333,7 @@ "line_number": 417 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -38254,7 +38341,7 @@ "type": "Module", "tier": "TRIVIAL", "start_line": 1, - "end_line": 620, + "end_line": 655, "tags": { "PURPOSE": "Auto-generated module for backend/src/plugins/llm_analysis/service.py", "TIER": "TRIVIAL", @@ -38334,12 +38421,30 @@ "score": 1.0 } }, + { + "name": "_supports_json_response_format", + "type": "Function", + "tier": "TRIVIAL", + "start_line": 444, + "end_line": 444, + "tags": { + "PURPOSE": "Auto-detected function (orphan)", + "TIER": "TRIVIAL" + }, + "relations": [], + "children": [], + "compliance": { + "valid": true, + "issues": [], + "score": 1.0 + } + }, { "name": "_should_retry", "type": "Function", "tier": "TRIVIAL", - "start_line": 445, - "end_line": 445, + "start_line": 465, + "end_line": 465, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -38356,8 +38461,8 @@ "name": "get_json_completion", "type": "Function", "tier": "TRIVIAL", - "start_line": 459, - "end_line": 459, + "start_line": 479, + "end_line": 479, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -38374,8 +38479,8 @@ "name": "analyze_dashboard", "type": "Function", "tier": "TRIVIAL", - "start_line": 552, - "end_line": 552, + "start_line": 587, + "end_line": 587, "tags": { "PURPOSE": "Auto-detected function (orphan)", "TIER": "TRIVIAL" @@ -38578,7 +38683,7 @@ "line_number": 88 } ], - "score": 0.26666666666666655 + "score": 0.0 } }, { @@ -38800,7 +38905,7 @@ "line_number": 27 } ], - "score": 0.7000000000000001 + "score": 0.5499999999999999 } } ], @@ -38813,7 +38918,7 @@ "line_number": 1 } ], - "score": 0.85 + "score": 0.775 } }, { @@ -38864,7 +38969,7 @@ "line_number": 20 } ], - "score": 0.4666666666666666 + "score": 0.2 } } ], @@ -38877,7 +38982,7 @@ "line_number": 14 } ], - "score": 0.8 + "score": 0.7 } }, { @@ -38978,7 +39083,7 @@ "line_number": 15 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 }, @@ -38988,12 +39093,12 @@ "line_number": 15 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 15 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } }, { @@ -39018,7 +39123,7 @@ "line_number": 55 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 55 }, @@ -39028,12 +39133,12 @@ "line_number": 55 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 55 } ], - "score": 0.5333333333333333 + "score": 0.30000000000000004 } } ], @@ -40107,22 +40212,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 22 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 22 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 22 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40142,22 +40247,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 34 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 34 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 34 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40177,22 +40282,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 44 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 44 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 44 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40212,22 +40317,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 53 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 53 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 53 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40247,22 +40352,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 62 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 62 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 62 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40282,22 +40387,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 87 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 87 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 87 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40317,22 +40422,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 128 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 128 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 128 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40352,22 +40457,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 154 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 154 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 154 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40387,22 +40492,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 201 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 201 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 201 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40422,22 +40527,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 229 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 229 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 229 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40457,22 +40562,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 272 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 272 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 272 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40492,22 +40597,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 322 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 322 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 322 } ], - "score": 0.7 + "score": 0.55 } }, { @@ -40527,22 +40632,22 @@ "valid": true, "issues": [ { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 363 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 363 }, { - "message": "Missing Belief State Logging: Function should use belief_scope (required for STANDARD tier)", + "message": "Missing Belief State Logging: Function should use belief_scope / molecular methods (required for STANDARD tier)", "severity": "WARNING", "line_number": 363 } ], - "score": 0.7 + "score": 0.55 } } ], diff --git a/test_analyze.py b/test_analyze.py new file mode 100644 index 0000000..84adcf1 --- /dev/null +++ b/test_analyze.py @@ -0,0 +1,20 @@ +import json + +with open("semantics/semantic_map.json") as f: + data = json.load(f) + +for m in data.get("modules", []): + if m.get("name") == "backend.src.core.task_manager.persistence": + def print_issues(node, depth=0): + issues = node.get("compliance", {}).get("issues", []) + if issues: + print(" "*depth, f"{node.get('type')} {node.get('name')} (line {node.get('start_line')}):") + for i in issues: + print(" "*(depth+1), "-", i.get("message")) + for c in node.get("children", []): + print_issues(c, depth+1) + for k in ["functions", "classes", "components"]: + for c in node.get(k, []): + print_issues(c, depth+1) + print_issues(m) + diff --git a/test_parse.py b/test_parse.py new file mode 100644 index 0000000..8a2de5a --- /dev/null +++ b/test_parse.py @@ -0,0 +1,25 @@ +import re + +patterns = { + "console_log": re.compile(r"console\.log\s*\(\s*['\"]\[[\w_]+\]\[[A-Za-z0-9_:]+\]"), + "js_anchor_start": re.compile(r"//\s*\[DEF:(?P[\w\.]+):(?P\w+)\]"), + "js_anchor_end": re.compile(r"//\s*\[/DEF:(?P[\w\.]+)(?::\w+)?\]"), + "html_anchor_start": re.compile(r""), + "html_anchor_end": re.compile(r""), +} + +stack = [] +with open("frontend/src/lib/components/assistant/AssistantChatPanel.svelte") as f: + for i, line in enumerate(f): + line_stripped = line.strip() + m_start = patterns["html_anchor_start"].search(line_stripped) or patterns["js_anchor_start"].search(line_stripped) + if m_start: + stack.append(m_start.group("name")) + + m_end = patterns["html_anchor_end"].search(line_stripped) or patterns["js_anchor_end"].search(line_stripped) + if m_end: + stack.pop() + + if patterns["console_log"].search(line): + print(f"Matched console.log on line {i+1} while stack is {stack}") + diff --git a/test_parse2.py b/test_parse2.py new file mode 100644 index 0000000..c73f28e --- /dev/null +++ b/test_parse2.py @@ -0,0 +1,10 @@ +import re +patterns = { + "console_log": re.compile(r"console\.log\s*\(\s*['\"]\[[\w_]+\]\[[A-Za-z0-9_:]+\]"), +} +with open("frontend/src/lib/components/assistant/AssistantChatPanel.svelte") as f: + for i, line in enumerate(f): + if "console.log" in line: + m = patterns["console_log"].search(line) + print(f"Line {i+1}: {line.strip()} -> Match: {bool(m)}") + diff --git a/test_parser.py b/test_parser.py new file mode 100644 index 0000000..442c3ed --- /dev/null +++ b/test_parser.py @@ -0,0 +1,227 @@ +# [DEF:backend.src.services.reports.report_service:Module] +# @TIER: CRITICAL +# @SEMANTICS: reports, service, aggregation, filtering, pagination, detail +# @PURPOSE: Aggregate, normalize, filter, and paginate task reports for unified list/detail API use cases. +# @LAYER: Domain +# @RELATION: DEPENDS_ON -> backend.src.core.task_manager.manager.TaskManager +# @RELATION: DEPENDS_ON -> backend.src.models.report +# @RELATION: DEPENDS_ON -> backend.src.services.reports.normalizer +# @INVARIANT: List responses are deterministic and include applied filter echo metadata. + +# [SECTION: IMPORTS] +from datetime import datetime, timezone +from typing import List, Optional + +from ...core.logger import belief_scope + +from ...core.task_manager import TaskManager +from ...models.report import ReportCollection, ReportDetailView, ReportQuery, ReportStatus, TaskReport, TaskType +from .normalizer import normalize_task_report +# [/SECTION] + + +# [DEF:ReportsService:Class] +# @PURPOSE: Service layer for list/detail report retrieval and normalization. +# @TIER: CRITICAL +# @PRE: TaskManager dependency is initialized. +# @POST: Provides deterministic list/detail report responses. +# @INVARIANT: Service methods are read-only over task history source. +class ReportsService: + # [DEF:__init__:Function] + # @TIER: CRITICAL + # @PURPOSE: Initialize service with TaskManager dependency. + # @PRE: task_manager is a live TaskManager instance. + # @POST: self.task_manager is assigned and ready for read operations. + # @INVARIANT: Constructor performs no task mutations. + # @PARAM: task_manager (TaskManager) - Task manager providing source task history. + def __init__(self, task_manager: TaskManager): + with belief_scope("__init__"): + self.task_manager = task_manager + # [/DEF:__init__:Function] + + # [DEF:_load_normalized_reports:Function] + # @PURPOSE: Build normalized reports from all available tasks. + # @PRE: Task manager returns iterable task history records. + # @POST: Returns normalized report list preserving source cardinality. + # @INVARIANT: Every returned item is a TaskReport. + # @RETURN: List[TaskReport] - Reports sorted later by list logic. + def _load_normalized_reports(self) -> List[TaskReport]: + with belief_scope("_load_normalized_reports"): + tasks = self.task_manager.get_all_tasks() + reports = [normalize_task_report(task) for task in tasks] + return reports + # [/DEF:_load_normalized_reports:Function] + + # [DEF:_to_utc_datetime:Function] + # @PURPOSE: Normalize naive/aware datetime values to UTC-aware datetime for safe comparisons. + # @PRE: value is either datetime or None. + # @POST: Returns UTC-aware datetime or None. + # @INVARIANT: Naive datetimes are interpreted as UTC to preserve deterministic ordering/filtering. + # @PARAM: value (Optional[datetime]) - Source datetime value. + # @RETURN: Optional[datetime] - UTC-aware datetime or None. + def _to_utc_datetime(self, value: Optional[datetime]) -> Optional[datetime]: + with belief_scope("_to_utc_datetime"): + if value is None: + return None + if value.tzinfo is None: + return value.replace(tzinfo=timezone.utc) + return value.astimezone(timezone.utc) + # [/DEF:_to_utc_datetime:Function] + + # [DEF:_datetime_sort_key:Function] + # @PURPOSE: Produce stable numeric sort key for report timestamps. + # @PRE: report contains updated_at datetime. + # @POST: Returns float timestamp suitable for deterministic sorting. + # @INVARIANT: Mixed naive/aware datetimes never raise TypeError. + # @PARAM: report (TaskReport) - Report item. + # @RETURN: float - UTC timestamp key. + def _datetime_sort_key(self, report: TaskReport) -> float: + with belief_scope("_datetime_sort_key"): + updated = self._to_utc_datetime(report.updated_at) + if updated is None: + return 0.0 + return updated.timestamp() + # [/DEF:_datetime_sort_key:Function] + + # [DEF:_matches_query:Function] + # @PURPOSE: Apply query filtering to a report. + # @PRE: report and query are normalized schema instances. + # @POST: Returns True iff report satisfies all active query filters. + # @INVARIANT: Filter evaluation is side-effect free. + # @PARAM: report (TaskReport) - Candidate report. + # @PARAM: query (ReportQuery) - Applied query. + # @RETURN: bool - True if report matches all filters. + def _matches_query(self, report: TaskReport, query: ReportQuery) -> bool: + with belief_scope("_matches_query"): + if query.task_types and report.task_type not in query.task_types: + return False + if query.statuses and report.status not in query.statuses: + return False + report_updated_at = self._to_utc_datetime(report.updated_at) + query_time_from = self._to_utc_datetime(query.time_from) + query_time_to = self._to_utc_datetime(query.time_to) + + if query_time_from and report_updated_at and report_updated_at < query_time_from: + return False + if query_time_to and report_updated_at and report_updated_at > query_time_to: + return False + if query.search: + needle = query.search.lower() + haystack = f"{report.summary} {report.task_type.value} {report.status.value}".lower() + if needle not in haystack: + return False + return True + # [/DEF:_matches_query:Function] + + # [DEF:_sort_reports:Function] + # @PURPOSE: Sort reports deterministically according to query settings. + # @PRE: reports contains only TaskReport items. + # @POST: Returns reports ordered by selected sort field and order. + # @INVARIANT: Sorting criteria are deterministic for equal input. + # @PARAM: reports (List[TaskReport]) - Filtered reports. + # @PARAM: query (ReportQuery) - Sort config. + # @RETURN: List[TaskReport] - Sorted reports. + def _sort_reports(self, reports: List[TaskReport], query: ReportQuery) -> List[TaskReport]: + with belief_scope("_sort_reports"): + reverse = query.sort_order == "desc" + + if query.sort_by == "status": + reports.sort(key=lambda item: item.status.value, reverse=reverse) + elif query.sort_by == "task_type": + reports.sort(key=lambda item: item.task_type.value, reverse=reverse) + else: + reports.sort(key=self._datetime_sort_key, reverse=reverse) + + return reports + # [/DEF:_sort_reports:Function] + + # [DEF:list_reports:Function] + # @PURPOSE: Return filtered, sorted, paginated report collection. + # @PRE: query has passed schema validation. + # @POST: Returns {items,total,page,page_size,has_next,applied_filters}. + # @PARAM: query (ReportQuery) - List filters and pagination. + # @RETURN: ReportCollection - Paginated unified reports payload. + def list_reports(self, query: ReportQuery) -> ReportCollection: + with belief_scope("list_reports"): + reports = self._load_normalized_reports() + filtered = [report for report in reports if self._matches_query(report, query)] + sorted_reports = self._sort_reports(filtered, query) + + total = len(sorted_reports) + start = (query.page - 1) * query.page_size + end = start + query.page_size + items = sorted_reports[start:end] + has_next = end < total + + return ReportCollection( + items=items, + total=total, + page=query.page, + page_size=query.page_size, + has_next=has_next, + applied_filters=query, + ) + # [/DEF:list_reports:Function] + + # [DEF:get_report_detail:Function] + # @PURPOSE: Return one normalized report with timeline/diagnostics/next actions. + # @PRE: report_id exists in normalized report set. + # @POST: Returns normalized detail envelope with diagnostics and next actions where applicable. + # @PARAM: report_id (str) - Stable report identifier. + # @RETURN: Optional[ReportDetailView] - Detailed report or None if not found. + def get_report_detail(self, report_id: str) -> Optional[ReportDetailView]: + with belief_scope("get_report_detail"): + reports = self._load_normalized_reports() + target = next((report for report in reports if report.report_id == report_id), None) + if not target: + return None + + timeline = [] + if target.started_at: + timeline.append({"event": "started", "at": target.started_at.isoformat()}) + timeline.append({"event": "updated", "at": target.updated_at.isoformat()}) + + diagnostics = target.details or {} + if not diagnostics: + diagnostics = {"note": "Not provided"} + if target.error_context: + diagnostics["error_context"] = target.error_context.model_dump() + + next_actions = [] + if target.error_context and target.error_context.next_actions: + next_actions = target.error_context.next_actions + elif target.status in {ReportStatus.FAILED, ReportStatus.PARTIAL}: + next_actions = ["Review diagnostics", "Retry task if applicable"] + + return ReportDetailView( + report=target, + timeline=timeline, + diagnostics=diagnostics, + next_actions=next_actions, + ) + # [/DEF:get_report_detail:Function] +# [/DEF:ReportsService:Class] + +import sys +from generate_semantic_map import parse_file + +file_path = "backend/src/core/task_manager/task_logger.py" +entities, issues = parse_file(file_path, file_path, "python") + +for e in entities: + e.validate() + +def print_entity(ent, indent=0): + print(" " * indent + f"{ent.type} {ent.name} Tags: {list(ent.tags.keys())} Belief: {ent.has_belief_scope}") + for i in ent.compliance_issues: + print(" " * (indent + 1) + f"ISSUE: {i.message}") + for c in ent.children: + print_entity(c, indent + 1) + +for e in entities: + print_entity(e) + +for i in issues: + print(f"GLOBAL ISSUE: {i.message} at line {i.line_number}") + +# [/DEF:backend.src.services.reports.report_service:Module] diff --git a/test_regex.py b/test_regex.py new file mode 100644 index 0000000..8c662e2 --- /dev/null +++ b/test_regex.py @@ -0,0 +1,13 @@ +import re + +patterns = { + "console_log": re.compile(r"console\.log\s*\(\s*['\"]\[[\w_]+\]\[[A-Za-z0-9_:]+\]"), +} + +with open("frontend/src/lib/components/assistant/AssistantChatPanel.svelte") as f: + for i, line in enumerate(f): + if "console.log" in line: + if patterns["console_log"].search(line): + print(f"Match: {line.strip()}") + else: + print(f"No match: {line.strip()}")